python-delphi-lsp 3.5.0__tar.gz → 3.6.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/.github/workflows/ci.yml +82 -51
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/LICENSE +373 -373
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/MANIFEST.in +43 -40
- {python_delphi_lsp-3.5.0/python_delphi_lsp.egg-info → python_delphi_lsp-3.6.0}/PKG-INFO +766 -743
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/README.md +718 -696
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/__init__.py +183 -177
- python_delphi_lsp-3.6.0/delphi_lsp/_version.py +1 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_cache.py +1574 -1574
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_cli.py +902 -890
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_context.py +3907 -3907
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_cpg.py +349 -349
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_cpg_builder.py +666 -666
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_layers.py +1410 -1358
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_metrics.py +526 -526
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_protocol.py +445 -445
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_relations.py +1881 -1881
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_templates.py +614 -614
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_wiki.py +2853 -2853
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_workspace.py +860 -860
- python_delphi_lsp-3.6.0/delphi_lsp/ast_serialize.py +126 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/binary.py +250 -250
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/comment_builder.py +28 -28
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/consts.py +345 -345
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/delphiast_lexer.py +399 -399
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/delphiast_parser.py +2189 -2189
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/delphiast_tokens.py +41 -41
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/grammar.py +459 -459
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/incremental.py +1139 -1139
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/lark_builder.py +2684 -2684
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/lark_tokens.py +236 -236
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/lexical_scanner.py +30 -30
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/lsp_server.py +6698 -6693
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/metrics.py +1452 -1452
- python_delphi_lsp-3.6.0/delphi_lsp/native_bridge.py +300 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/navigation_cache.py +189 -189
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/nodes.py +462 -462
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/parallel_outline.py +662 -662
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/parse_artifacts.py +969 -969
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/parser.py +342 -342
- python_delphi_lsp-3.6.0/delphi_lsp/parser_backend.py +139 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/preprocessor.py +1122 -1122
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/progress.py +26 -26
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/project_config.py +285 -285
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/project_discovery.py +932 -932
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/project_indexer.py +470 -470
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/py.typed +1 -1
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/response_cache.py +465 -465
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/semantic.py +394 -394
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/semantic_builder.py +2302 -2302
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/source_reader.py +17 -17
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/wiki_external_sort.py +392 -392
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/wiki_memory.py +548 -548
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/workspace.py +83 -83
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/writer.py +73 -73
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/performance-delphi.md +249 -249
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/performance-fpc.md +239 -239
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-2.3.0.md +47 -47
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-2.3.3.md +13 -13
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.0.0.md +64 -64
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.1.0.md +70 -70
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.1.1.md +46 -46
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.1.2.md +39 -39
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.2.0.md +79 -79
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.2.1.md +77 -77
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.2.2.md +52 -52
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.3.0.md +93 -93
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.4.0.md +97 -97
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.5.0.md +82 -82
- python_delphi_lsp-3.6.0/docs/rust-backend-benchmark.md +112 -0
- python_delphi_lsp-3.6.0/docs/rust-backend.md +84 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-16-architecture-metrics-implementation.md +360 -360
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-17-large-codebase-performance.md +152 -152
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-22-conditional-outline-ranges.md +48 -48
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-23-2.3-performance.md +385 -385
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-23-bounded-cli-cache-daemon.md +921 -921
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-23-delphiast-python-backend.md +102 -102
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-23-parallel-cache-prewarming.md +539 -539
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-24-hybrid-cpg.md +480 -480
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-24-repository-default-navigation.md +53 -53
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-27-okf-memory-progress.md +58 -58
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-27-okf-wiki-export.md +16 -16
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-27-project-path-configuration.md +96 -96
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-08-04-release-performance-unblock.md +384 -384
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-16-architecture-metrics-design.md +213 -213
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-17-large-codebase-performance-design.md +47 -47
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-22-conditional-outline-ranges-design.md +61 -61
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-23-2.3-performance-design.md +180 -180
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-23-bounded-cli-cache-daemon-design.md +230 -230
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-23-delphiast-python-backend-design.md +125 -125
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-23-parallel-cache-prewarming-design.md +231 -231
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-24-hybrid-cpg-design.md +197 -197
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-24-repository-default-navigation-design.md +44 -44
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-27-okf-memory-progress-design.md +87 -87
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-27-okf-wiki-export-design.md +65 -65
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-27-project-path-configuration-design.md +91 -91
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-08-04-release-performance-unblock-design.md +190 -190
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/opencode.json +277 -236
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/pyproject.toml +68 -61
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0/python_delphi_lsp.egg-info}/PKG-INFO +766 -743
- python_delphi_lsp-3.6.0/python_delphi_lsp.egg-info/SOURCES.txt +398 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/python_delphi_lsp.egg-info/requires.txt +1 -0
- python_delphi_lsp-3.6.0/rust/Cargo.toml +14 -0
- python_delphi_lsp-3.6.0/rust/README.md +36 -0
- python_delphi_lsp-3.6.0/rust/src/lexer.rs +659 -0
- python_delphi_lsp-3.6.0/rust/src/lib.rs +131 -0
- python_delphi_lsp-3.6.0/rust/src/parser/mod.rs +441 -0
- python_delphi_lsp-3.6.0/rust/src/parser/structure.rs +489 -0
- python_delphi_lsp-3.6.0/rust/src/parser/types.rs +2778 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/audit_delphi_language_features.py +456 -456
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_cpg.py +376 -376
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_fpc_corpus.py +2833 -2833
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_github_corpus.py +256 -256
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_parallel_cache.py +71 -71
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_response_cache.py +222 -222
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/bootstrap_vllm_codebase_skill_test.py +443 -443
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/bootstrap_vllm_opencode_test.ps1 +29 -29
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/bootstrap_vllm_opencode_test.py +242 -242
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/bootstrap_vllm_opencode_test.sh +7 -7
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/build_github_performance_corpus.py +521 -521
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/check_ornith_cache.py +118 -118
- python_delphi_lsp-3.6.0/scripts/eval_all.py +661 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/generate_progress_pdf.py +518 -518
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/generate_release_evidence.py +807 -807
- python_delphi_lsp-3.6.0/scripts/lexer_parity.py +474 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/ollama/ornith-lspctx.Modelfile +7 -7
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/outline_gap_detector.py +656 -656
- python_delphi_lsp-3.6.0/scripts/parser_differential.py +421 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/prepare_delphi_corpus.py +213 -213
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/prepare_fpc_corpus.py +171 -171
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/prepare_ornith_cache.py +118 -118
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/run_opencode_lsp_probe.py +816 -816
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/run_openrouter_github_e2e.py +1398 -1398
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/start_ornith_vllm.sh +67 -67
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/summarize_opencode_request_payloads.py +147 -147
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/setup.cfg +4 -4
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/corpora.performance.lock.json +71 -71
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/01_compound_symbols.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/02_single_symbols.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/03_line_comment.pas +2 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/04_brace_comment.pas +2 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/05_paren_comment.pas +2 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/06_compiler_directive_brace.pas +2 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/07_compiler_directive_paren.pas +2 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/08_string_single.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/09_string_escaped.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/10_char_code.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/11_char_code_hex.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/12_hex_number.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/13_binary_number.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/14_decimal_number.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/15_float_number.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/16_exp_number.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/17_range_vs_float.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/18_trailing_dot.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/19_ampersian_identifier.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/20_ampersian_octal.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/21_keywords.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/22_identifier.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/23_bom.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/24_crlf.pas +1 -0
- python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/25_tab.pas +1 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/library_demo.dpr +20 -20
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/package_demo.dpk +10 -10
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/program_demo.dpr +11 -11
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/01_simple_unit.pas +4 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/02_simple_program.pas +4 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/03_simple_library.pas +4 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/04_simple_package.pas +3 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/05_unit_with_name.pas +4 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/06_uses_single.pas +5 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/07_uses_multiple.pas +5 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/08_uses_with_path.pas +5 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/09_uses_complex_path.pas +5 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/10_uses_in_interface.pas +8 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/11_interface_section.pas +10 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/12_implementation_section.pas +5 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/13_initialization_section.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/14_type_section.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/15_var_section.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/16_const_section.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/17_resourcestring_section.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/18_threadvar_section.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/19_exports_section.pas +5 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/20_multiple_sections.pas +15 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/21_unit_deprecated.pas +4 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/22_unit_experimental.pas +4 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/23_empty_interface.pas +4 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/24_requires_clause.pas +5 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/25_contains_clause.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/26_class_declaration.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/27_record_declaration.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/28_object_declaration.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/29_class_with_base.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/30_class_with_multiple_bases.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/31_record_with_base.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/32_visibility_private.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/33_visibility_strict_private.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/34_visibility_protected.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/35_visibility_strict_protected.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/36_visibility_public.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/37_visibility_published.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/38_visibility_automated.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/39_field_declaration.pas +10 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/40_method_declaration.pas +10 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/41_method_with_params.pas +10 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/42_property_read_write.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/43_property_read_only.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/44_property_with_method_read.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/45_property_index_default.pas +12 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/46_class_var.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/47_class_const.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/48_type_alias.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/49_enum_declaration.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/50_enum_with_values.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/51_set_declaration.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/52_set_of_char.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/53_array_of_int.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/54_array_static.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/55_pointer_type.pas +10 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/56_procedural_type.pas +8 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/57_procedural_type_with_result.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/58_class_of.pas +8 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/59_class_of_anonymous.pas +6 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/60_class_helper.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/61_class_helper_full.pas +13 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/62_variant_record.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/63_variant_record_simple.pas +10 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/64_generic_class.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/65_generic_multiple_params.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/66_specialize_generic.pas +8 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/67_generic_with_constraint.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/68_generic_with_constructor_constraint.pas +7 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_abstract.pas +12 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_cdecl.pas +13 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_deprecated.pas +13 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_external.pas +9 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_forward.pas +19 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_inline.pas +14 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_overload.pas +18 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_override.pas +20 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_stdcall.pas +13 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_virtual.pas +16 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_cast.pas +17 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_create.pas +26 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_field_chain.pas +25 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_indexing.pas +20 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_operator_precedence.pas +17 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/hang_001.pas +10 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_class_routine.pas +19 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_const.pas +15 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_label.pas +17 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_multi.pas +22 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_multiple.pas +24 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_routine.pas +16 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_routine_nested.pas +25 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_type.pas +18 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_array_of.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_const.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_default.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_out.pas +12 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_var.pas +12 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_bad_token.pas +14 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_incomplete.pas +13 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_missing_colon.pas +13 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_missing_end.pas +17 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_missing_semicolon.pas +18 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_constructor.pas +14 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_destructor.pas +15 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_function.pas +12 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_multiline.pas +19 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_operator.pas +15 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_procedure.pas +11 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_asm.pas +21 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_begin_end.pas +14 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_case_else.pas +18 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_case_of.pas +18 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_for_downto.pas +17 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_for_to.pas +17 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_goto.pas +18 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_if_then.pas +15 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_if_then_else.pas +17 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_raise.pas +14 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_repeat_until.pas +19 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_try_except.pas +19 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_try_finally.pas +21 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_while.pas +18 -0
- python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_with.pas +27 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_advanced.pas +66 -66
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_attributes.pas +25 -25
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_basic.pas +17 -17
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_consumer.pas +19 -19
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_generics.pas +44 -44
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_inheritance.pas +29 -29
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_math.pas +14 -14
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_properties.pas +45 -45
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_sections.pas +19 -19
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_statements.pas +52 -52
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_types.pas +56 -56
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_unresolved.pas +16 -16
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_with.pas +31 -31
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fpc_parse_quality.baseline.json +5430 -5430
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_cache.py +2158 -2158
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_cli_content.py +624 -624
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_cli_errors.py +449 -449
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_codebase.py +1794 -1673
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_context.py +3420 -3420
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_cpg.py +580 -580
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_metrics.py +504 -504
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_protocol.py +724 -724
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_relations.py +2738 -2738
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_wiki.py +1086 -1086
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_worker.py +1103 -1103
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_workspace.py +1388 -1388
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_artifact_cache_cpu_smoke.py +116 -116
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_artifact_cache_integration.py +315 -315
- python_delphi_lsp-3.6.0/tests/test_ast_serialize.py +365 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_bootstrap_vllm_codebase_skill.py +199 -199
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_bootstrap_vllm_opencode.py +131 -131
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphi_performance_corpus.py +210 -210
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_lexer.py +284 -284
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_native_compatibility.py +1066 -1066
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_parser.py +331 -331
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_parser_linearity.py +255 -255
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_semantic_compatibility.py +73 -73
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_diagnostics.py +22 -22
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_fpc_performance_corpus.py +1069 -1069
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_github_performance_corpus.py +274 -274
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_incremental.py +296 -296
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_incremental_performance.py +58 -58
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_incremental_property.py +560 -560
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_language_feature_matrix.py +98 -98
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_legacy_snippets.py +55 -55
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_lsp_features.py +948 -948
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_lsp_server.py +4005 -4005
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_lsp_support.py +1907 -1907
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_metrics.py +604 -604
- python_delphi_lsp-3.6.0/tests/test_native_bridge.py +263 -0
- python_delphi_lsp-3.6.0/tests/test_native_optional.py +121 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_navigation_cache.py +80 -80
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_opencode_config.py +143 -109
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_opencode_probe.py +1037 -1037
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_opencode_request_payloads.py +92 -92
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_openrouter_github_e2e.py +1843 -1843
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_ornith_cache_prepare.py +128 -128
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_outline_gap_detector.py +469 -469
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_package_metadata.py +280 -280
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_parallel_outline.py +628 -628
- python_delphi_lsp-3.6.0/tests/test_parity_floor.py +455 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_parse_artifacts.py +230 -230
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_parser.py +1752 -1752
- python_delphi_lsp-3.6.0/tests/test_parser_backend_switch.py +186 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_parser_backends.py +413 -413
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_preprocessor.py +562 -562
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_progress.py +101 -101
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_project_config.py +210 -210
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_project_discovery.py +965 -965
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_project_indexer.py +634 -634
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_release_evidence.py +734 -734
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_response_cache.py +329 -329
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_response_cache_benchmark.py +53 -53
- python_delphi_lsp-3.6.0/tests/test_rust_lexer_parity.py +57 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_semantic.py +987 -987
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_throughput_scaling.py +385 -385
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_vllm_start_script.py +20 -20
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_wiki_external_sort.py +322 -322
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_wiki_memory.py +316 -316
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_workspace.py +150 -150
- python_delphi_lsp-3.5.0/delphi_lsp/_version.py +0 -1
- python_delphi_lsp-3.5.0/delphi_lsp/parser_backend.py +0 -68
- python_delphi_lsp-3.5.0/python_delphi_lsp.egg-info/SOURCES.txt +0 -405
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitX.Examples.AssertFailureCompare.pas +0 -84
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitX.Examples.EqualityAsserts.pas +0 -66
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitX.Examples.General.pas +0 -379
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitX.Examples.UITest.pas +0 -89
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_2010.dpr +0 -94
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Berlin.dpr +0 -73
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Rio.dpr +0 -75
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Seattle.dpr +0 -73
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Sydney.dpr +0 -75
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Tokyo.dpr +0 -75
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D11Alexandria.dpr +0 -78
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D12Athens.dpr +0 -119
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D13.dpr +0 -119
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE.dpr +0 -98
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE2.dpr +0 -91
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE3.dpr +0 -86
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE4.dpr +0 -85
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE5.dpr +0 -85
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE6.dpr +0 -85
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE7.dpr +0 -94
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE8.dpr +0 -71
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_D10Berlin.dpr +0 -30
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_D10Seattle.dpr +0 -30
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_D10Tokyo.dpr +0 -30
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_XE5.dpr +0 -30
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_XE6.dpr +0 -30
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_XE7.dpr +0 -30
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_XE8.dpr +0 -30
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXVCLGUI_D10Berlin.dpr +0 -59
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXVCLGUI_D10Seattle.dpr +0 -59
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXVCLGUI_XE.dpr +0 -65
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXVCLGUI_XE7.dpr +0 -65
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/NonNamespacedExample.pas +0 -30
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.NewProject.pas +0 -213
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.NewTestProject.pas +0 -106
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.NewTestUnit.pas +0 -175
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.NewUnit.pas +0 -186
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.SourceFile.pas +0 -74
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.Templates.pas +0 -284
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.Forms.NewProjectWizard.pas +0 -151
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.Forms.NewUnitWizard.pas +0 -117
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.NewUnitWizard.pas +0 -166
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.NewUnitWizardEx.pas +0 -113
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.ProjectWizard.pas +0 -185
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.ProjectWizardEx.pas +0 -136
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.Registration.pas +0 -68
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_2010.dpk +0 -47
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D10Berlin.dpk +0 -51
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D10Rio.dpk +0 -51
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D10Seattle.dpk +0 -51
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D10Tokyo.dpk +0 -51
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D11Alexandria.dpk +0 -51
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D12Athens.dpk +0 -51
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D13Florence.dpk +0 -51
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_Sydney.dpk +0 -51
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE.dpk +0 -47
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE2.dpk +0 -50
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE3.dpk +0 -50
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE4.dpk +0 -50
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE5.dpk +0 -50
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE6.dpk +0 -50
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE7.dpk +0 -50
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE8.dpk +0 -50
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/LICENSE.txt +0 -202
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUNitX.Loggers.GUIX.pas +0 -597
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUNitX.Loggers.MobileGUI.pas +0 -427
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Assert.Ex.pas +0 -108
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Assert.pas +0 -1571
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Attributes.pas +0 -476
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.AutoDetect.Console.pas +0 -74
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Banner.pas +0 -79
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.CategoryExpression.pas +0 -293
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.CommandLine.OptionDef.pas +0 -336
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.CommandLine.Options.pas +0 -229
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.CommandLine.Parser.pas +0 -354
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ComparableFormat.Csv.pas +0 -41
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ComparableFormat.Xml.pas +0 -41
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ComparableFormat.pas +0 -39
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ConsoleWriter.Base.pas +0 -251
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Constants.pas +0 -43
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.DUnitCompatibility.pas +0 -458
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Exceptions.pas +0 -91
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Extensibility.pas +0 -249
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.FilterBuilder.pas +0 -127
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Filters.pas +0 -455
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.FixtureBuilder.pas +0 -89
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.FixtureProvider.pas +0 -594
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.FixtureResult.pas +0 -372
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Generics.pas +0 -440
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Helpers.pas +0 -55
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Init.pas +0 -70
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.InternalDataProvider.pas +0 -29
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.InternalInterfaces.pas +0 -87
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Linux.Console.pas +0 -159
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.Console.pas +0 -481
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.GUI.VCL.RichEdit.pas +0 -430
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.GUI.VCL.pas +0 -1557
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.Null.pas +0 -171
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.Text.pas +0 -424
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.XML.JUnit.pas +0 -369
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.XML.NUnit.pas +0 -448
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.XML.xUnit.pas +0 -36
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MacOS.Console.pas +0 -159
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MemoryLeakMonitor.Default.pas +0 -116
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MemoryLeakMonitor.FastMM4.pas +0 -143
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MemoryLeakMonitor.FastMM5.pas +0 -126
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MemoryLeaks.inc +0 -34
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.OptionsDefinition.pas +0 -133
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ResStrs.pas +0 -185
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.RunResults.pas +0 -259
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ServiceLocator.pas +0 -344
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.EurekaLog7.pas +0 -115
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.JCL.pas +0 -133
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.MadExcept3.pas +0 -108
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.MadExcept4.pas +0 -120
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.MadExcept5.pas +0 -105
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Stacktrace.inc +0 -43
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Test.pas +0 -452
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestDataProvider.pas +0 -112
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestFixture.pas +0 -637
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestFramework.pas +0 -936
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestNameParser.pas +0 -174
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestResult.pas +0 -286
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestRunner.pas +0 -1082
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Timeout.pas +0 -181
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Types.pas +0 -59
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Utils.XML.pas +0 -138
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Utils.pas +0 -3572
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.WeakReference.pas +0 -365
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Windows.Console.pas +0 -227
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.inc +0 -115
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Options.pas +0 -81
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.SingleNameSpace.pas +0 -43
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Stacktrace.inc +0 -7
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Assert.pas +0 -1536
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.CategoryParser.pas +0 -246
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.CommandLineParser.pas +0 -516
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.ConsoleWriter.Base.pas +0 -377
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.DUnitCompatibility.pas +0 -98
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Example.pas +0 -427
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Framework.pas +0 -7
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.IgnoreFixture.pas +0 -119
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Inheritance.pas +0 -113
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.IoC.pas +0 -176
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Loggers.XML.JUnit.pas +0 -279
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Loggers.XML.NUnit.pas +0 -279
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.MemoryLeaks.pas +0 -96
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.TestDataProvider.pas +0 -141
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.TestFixture.pas +0 -302
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.TestNameParser.pas +0 -65
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Utils.XML.pas +0 -33
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Utils.pas +0 -269
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.WeakReference.pas +0 -196
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitXGuiTest.dpr +0 -48
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitXTestProject.dpr +0 -92
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitXTest_D2010.dpr +0 -131
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitXTest_XE.dpr +0 -130
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.0/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.1/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.2/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.3/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.4/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 11.0/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 12.0/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 13.0/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE2/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE3/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE4/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE5/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE6/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE7/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE8/VSoft.DUnitXWinR.dpk +0 -88
- python_delphi_lsp-3.5.0/test_projects/github_repos/mORMot2/LICENCE.md +0 -81
- python_delphi_lsp-3.5.0/test_projects/github_repos/mORMot2/src/mormot.defines.inc +0 -1121
- python_delphi_lsp-3.5.0/test_projects/github_repos/mORMot2/src/ui/mormot.ui.pdf.pas +0 -12508
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/python_delphi_lsp.egg-info/dependency_links.txt +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/python_delphi_lsp.egg-info/entry_points.txt +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/python_delphi_lsp.egg-info/top_level.txt +0 -0
- {python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples → python_delphi_lsp-3.6.0/tests/fixtures/DUnitX}/ProviderExample.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/DeprecatedOnConst.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/VariantRecordFieldAttributes.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/alignedrecords.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/constset.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/deprecatedtype.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/dottedtypes.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/endtoken.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/experimentals.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/externalfunction.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/finalizationinitializationexports.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/forwardoverloaded.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/forwardwithoutsemicolon.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/genericconstraints.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/genericinterfacemethoddelegation.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/implementsgenerictype.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/include file2.inc +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/includefile.inc +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/includefile.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/managedrecords.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/messagemethod.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/multiline.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/nonalignedrecords.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/numbers.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/pointerchars.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/properties.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/strictvisibility.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/tryexcept.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/umlauts.pas +0 -0
- {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/whitespacearoundifdefcondition.pas +0 -0
|
@@ -1,51 +1,82 @@
|
|
|
1
|
-
name: CI
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
branches: [main]
|
|
6
|
-
pull_request:
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
- uses: actions/
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
cache
|
|
25
|
-
|
|
26
|
-
- run: pip install
|
|
27
|
-
- run:
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
steps:
|
|
34
|
-
- uses: actions/checkout@v4
|
|
35
|
-
- uses: actions/setup-python@v5
|
|
36
|
-
with:
|
|
37
|
-
python-version: "3.
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
-
|
|
1
|
+
name: CI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches: [main]
|
|
6
|
+
pull_request:
|
|
7
|
+
branches: [main]
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
python-tests:
|
|
11
|
+
name: Python tests (${{ matrix.os }} / ${{ matrix.python }})
|
|
12
|
+
runs-on: ${{ matrix.os }}
|
|
13
|
+
timeout-minutes: 20
|
|
14
|
+
strategy:
|
|
15
|
+
fail-fast: false
|
|
16
|
+
matrix:
|
|
17
|
+
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
18
|
+
python: ["3.10", "3.14"]
|
|
19
|
+
steps:
|
|
20
|
+
- uses: actions/checkout@v4
|
|
21
|
+
- uses: actions/setup-python@v5
|
|
22
|
+
with:
|
|
23
|
+
python-version: ${{ matrix.python }}
|
|
24
|
+
cache: pip
|
|
25
|
+
cache-dependency-path: pyproject.toml
|
|
26
|
+
- run: python -m pip install --upgrade pip
|
|
27
|
+
- run: pip install .[test]
|
|
28
|
+
- run: pytest
|
|
29
|
+
|
|
30
|
+
native-parser:
|
|
31
|
+
name: Native Parser (abi3 wheel)
|
|
32
|
+
runs-on: ubuntu-latest
|
|
33
|
+
steps:
|
|
34
|
+
- uses: actions/checkout@v4
|
|
35
|
+
- uses: actions/setup-python@v5
|
|
36
|
+
with:
|
|
37
|
+
python-version: "3.12"
|
|
38
|
+
- name: Install Rust toolchain
|
|
39
|
+
uses: dtolnay/rust-action@master
|
|
40
|
+
with:
|
|
41
|
+
toolchain: stable
|
|
42
|
+
- name: Install native venv
|
|
43
|
+
run: |
|
|
44
|
+
python -m venv /tmp/t4-native-venv
|
|
45
|
+
/tmp/t4-native-venv/bin/pip install --upgrade pip maturin twine
|
|
46
|
+
- name: Build abi3 wheel
|
|
47
|
+
run: |
|
|
48
|
+
cd rust
|
|
49
|
+
/tmp/t4-native-venv/bin/maturin build --release --out /tmp/wheels
|
|
50
|
+
cd ..
|
|
51
|
+
- name: Check wheel
|
|
52
|
+
run: |
|
|
53
|
+
/tmp/t4-native-venv/bin/twine check /tmp/wheels/*.whl
|
|
54
|
+
- name: Upload artifact
|
|
55
|
+
uses: actions/upload-artifact@v4
|
|
56
|
+
with:
|
|
57
|
+
name: native-wheel
|
|
58
|
+
path: /tmp/wheels/*.whl
|
|
59
|
+
|
|
60
|
+
package:
|
|
61
|
+
name: Build and validate distributions
|
|
62
|
+
runs-on: ubuntu-latest
|
|
63
|
+
timeout-minutes: 20
|
|
64
|
+
steps:
|
|
65
|
+
- uses: actions/checkout@v4
|
|
66
|
+
- uses: actions/setup-python@v5
|
|
67
|
+
with:
|
|
68
|
+
python-version: "3.14"
|
|
69
|
+
cache: pip
|
|
70
|
+
cache-dependency-path: pyproject.toml
|
|
71
|
+
- run: python -m pip install --upgrade pip build twine
|
|
72
|
+
- run: python -m build
|
|
73
|
+
- run: python -m twine check dist/*
|
|
74
|
+
- name: Run tests from unpacked sdist
|
|
75
|
+
run: |
|
|
76
|
+
mkdir sdist-smoke
|
|
77
|
+
tar -xzf dist/*.tar.gz -C sdist-smoke --strip-components=1
|
|
78
|
+
python -m pip install "./sdist-smoke[test]"
|
|
79
|
+
python -m pytest sdist-smoke/tests
|
|
80
|
+
- run: python -m venv smoke-venv
|
|
81
|
+
- run: smoke-venv/bin/python -m pip install dist/*.whl
|
|
82
|
+
- run: smoke-venv/bin/python -c "import delphi_lsp, pathlib; package = pathlib.Path(delphi_lsp.__file__).parent; assert (package / 'py.typed').is_file(); print(delphi_lsp.__name__)"
|