LICENSE
README.md
pyproject.toml
ivy_lsp/__init__.py
ivy_lsp/__main__.py
ivy_lsp/mcp_server.py
ivy_lsp/protocols.py
ivy_lsp/server.py
ivy_lsp/structured_logging.py
ivy_lsp/verification.py
ivy_lsp.egg-info/PKG-INFO
ivy_lsp.egg-info/SOURCES.txt
ivy_lsp.egg-info/dependency_links.txt
ivy_lsp.egg-info/entry_points.txt
ivy_lsp.egg-info/requires.txt
ivy_lsp.egg-info/top_level.txt
ivy_lsp/adapters/__init__.py
ivy_lsp/adapters/ast_enrichment_adapter.py
ivy_lsp/adapters/compiler_adapter.py
ivy_lsp/adapters/null_adapter.py
ivy_lsp/adapters/protocols.py
ivy_lsp/analysis/__init__.py
ivy_lsp/analysis/formula_analyzer.py
ivy_lsp/analysis/lexer_requirement_extractor.py
ivy_lsp/analysis/light_mode_extractor.py
ivy_lsp/analysis/requirement_extractor.py
ivy_lsp/analysis/requirement_graph.py
ivy_lsp/analysis/test_scope.py
ivy_lsp/compilation/__init__.py
ivy_lsp/compilation/compiler_manager.py
ivy_lsp/compilation/extractor.py
ivy_lsp/compilation/graph_enrichment.py
ivy_lsp/compilation/ir.py
ivy_lsp/compilation/worker.py
ivy_lsp/features/__init__.py
ivy_lsp/features/code_action.py
ivy_lsp/features/code_lens.py
ivy_lsp/features/commands.py
ivy_lsp/features/completion.py
ivy_lsp/features/coverage_hints.py
ivy_lsp/features/definition.py
ivy_lsp/features/diagnostics.py
ivy_lsp/features/document_highlight.py
ivy_lsp/features/document_symbols.py
ivy_lsp/features/folding_range.py
ivy_lsp/features/hover.py
ivy_lsp/features/monitoring.py
ivy_lsp/features/references.py
ivy_lsp/features/rename.py
ivy_lsp/features/selection_range.py
ivy_lsp/features/signature_help.py
ivy_lsp/features/status.py
ivy_lsp/features/visualization.py
ivy_lsp/features/workspace_symbols.py
ivy_lsp/indexer/__init__.py
ivy_lsp/indexer/file_cache.py
ivy_lsp/indexer/include_resolver.py
ivy_lsp/indexer/parallel_indexer.py
ivy_lsp/indexer/workspace_indexer.py
ivy_lsp/parsing/__init__.py
ivy_lsp/parsing/ast_to_symbols.py
ivy_lsp/parsing/fallback_parser.py
ivy_lsp/parsing/fallback_scanner.py
ivy_lsp/parsing/parser_session.py
ivy_lsp/parsing/symbols.py
ivy_lsp/parsing/token_stream.py
ivy_lsp/semantic/__init__.py
ivy_lsp/semantic/analysis_pipeline.py
ivy_lsp/semantic/edges.py
ivy_lsp/semantic/model.py
ivy_lsp/semantic/nodes.py
ivy_lsp/semantic/rfc_annotations.py
ivy_lsp/semantic/snapshots.py
ivy_lsp/utils/__init__.py
ivy_lsp/utils/async_subprocess.py
ivy_lsp/utils/ivy_output.py
ivy_lsp/utils/position_utils.py
ivy_lsp/utils/structural_lint.py
ivy_lsp/utils/validation.py
tests/test_active_test_commands.py
tests/test_adapters_protocols.py
tests/test_analysis_pipeline.py
tests/test_ast_enrichment.py
tests/test_async_subprocess.py
tests/test_bulk_analysis.py
tests/test_bulk_compilation.py
tests/test_bump_version.py
tests/test_code_action.py
tests/test_code_lens.py
tests/test_command_dispatch.py
tests/test_command_instrumentation.py
tests/test_commands.py
tests/test_compilation_extractor.py
tests/test_compilation_ir.py
tests/test_compilation_worker.py
tests/test_compiled_model_command.py
tests/test_compiler_adapter.py
tests/test_compiler_cache_invalidation.py
tests/test_compiler_manager.py
tests/test_coverage_diagnostics.py
tests/test_deep_index_endpoints.py
tests/test_deep_index_progress.py
tests/test_dirty_propagation.py
tests/test_document_highlight.py
tests/test_export_import_extraction.py
tests/test_export_import_symbols.py
tests/test_extract_param.py
tests/test_feature_error_handling.py
tests/test_folding_range.py
tests/test_formula_analyzer.py
tests/test_full_integration.py
tests/test_graph_enrichment.py
tests/test_indexer_stats.py
tests/test_ivy_output.py
tests/test_lexer_requirement_extractor.py
tests/test_light_mode_dispatch.py
tests/test_light_mode_extractor.py
tests/test_mcp_path_traversal.py
tests/test_mcp_semantic_tools.py
tests/test_mcp_verification_wiring.py
tests/test_mcp_visualization.py
tests/test_monitoring.py
tests/test_nct_classification.py
tests/test_null_adapter.py
tests/test_parallel_indexer.py
tests/test_persistent_file_cache.py
tests/test_rename.py
tests/test_requirement_diagnostics.py
tests/test_requirement_extractor.py
tests/test_requirement_graph.py
tests/test_resolver_serialization.py
tests/test_rfc_annotations.py
tests/test_scoped_code_lens.py
tests/test_scoped_diagnostics.py
tests/test_scoped_integration.py
tests/test_scoped_requirement_model.py
tests/test_selection_range.py
tests/test_semantic_code_lens.py
tests/test_semantic_diagnostics.py
tests/test_semantic_hover.py
tests/test_semantic_model.py
tests/test_semantic_nodes.py
tests/test_signature_help.py
tests/test_smart_completions.py
tests/test_status.py
tests/test_structural_lint.py
tests/test_symbol_serialization.py
tests/test_task_1_1_scaffolding.py
tests/test_task_1_2_symbols.py
tests/test_task_1_3_parser_session.py
tests/test_task_1_4_ast_to_symbols.py
tests/test_task_1_5_fallback_scanner.py
tests/test_task_1_6_document_symbols.py
tests/test_task_1_7_workspace_symbols.py
tests/test_task_1_8_position_utils.py
tests/test_task_1_9_integration.py
tests/test_task_1_9_server.py
tests/test_task_2_1_include_resolver.py
tests/test_task_2_2_file_cache.py
tests/test_task_2_3_workspace_indexer.py
tests/test_task_2_4_definition.py
tests/test_task_2_5_references.py
tests/test_task_2_6_integration.py
tests/test_task_3_1_completion.py
tests/test_task_3_2_diagnostics.py
tests/test_task_3_3_hover.py
tests/test_task_3_4_integration.py
tests/test_task_4_4_corpus.py
tests/test_task_4_5_e2e_serena.py
tests/test_task_4_handler_wiring.py
tests/test_test_scope.py
tests/test_token_stream.py
tests/test_verification.py
tests/test_visualization.py
tests/test_visualization_integration.py
tests/test_warm_load.py
tests/test_workspace_indexer_scoping.py
tests/test_workspace_rfc.py