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.
Files changed (578) hide show
  1. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/.github/workflows/ci.yml +82 -51
  2. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/LICENSE +373 -373
  3. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/MANIFEST.in +43 -40
  4. {python_delphi_lsp-3.5.0/python_delphi_lsp.egg-info → python_delphi_lsp-3.6.0}/PKG-INFO +766 -743
  5. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/README.md +718 -696
  6. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/__init__.py +183 -177
  7. python_delphi_lsp-3.6.0/delphi_lsp/_version.py +1 -0
  8. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_cache.py +1574 -1574
  9. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_cli.py +902 -890
  10. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_context.py +3907 -3907
  11. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_cpg.py +349 -349
  12. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_cpg_builder.py +666 -666
  13. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_layers.py +1410 -1358
  14. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_metrics.py +526 -526
  15. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_protocol.py +445 -445
  16. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_relations.py +1881 -1881
  17. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_templates.py +614 -614
  18. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_wiki.py +2853 -2853
  19. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/agent_workspace.py +860 -860
  20. python_delphi_lsp-3.6.0/delphi_lsp/ast_serialize.py +126 -0
  21. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/binary.py +250 -250
  22. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/comment_builder.py +28 -28
  23. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/consts.py +345 -345
  24. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/delphiast_lexer.py +399 -399
  25. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/delphiast_parser.py +2189 -2189
  26. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/delphiast_tokens.py +41 -41
  27. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/grammar.py +459 -459
  28. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/incremental.py +1139 -1139
  29. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/lark_builder.py +2684 -2684
  30. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/lark_tokens.py +236 -236
  31. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/lexical_scanner.py +30 -30
  32. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/lsp_server.py +6698 -6693
  33. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/metrics.py +1452 -1452
  34. python_delphi_lsp-3.6.0/delphi_lsp/native_bridge.py +300 -0
  35. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/navigation_cache.py +189 -189
  36. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/nodes.py +462 -462
  37. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/parallel_outline.py +662 -662
  38. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/parse_artifacts.py +969 -969
  39. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/parser.py +342 -342
  40. python_delphi_lsp-3.6.0/delphi_lsp/parser_backend.py +139 -0
  41. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/preprocessor.py +1122 -1122
  42. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/progress.py +26 -26
  43. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/project_config.py +285 -285
  44. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/project_discovery.py +932 -932
  45. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/project_indexer.py +470 -470
  46. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/py.typed +1 -1
  47. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/response_cache.py +465 -465
  48. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/semantic.py +394 -394
  49. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/semantic_builder.py +2302 -2302
  50. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/source_reader.py +17 -17
  51. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/wiki_external_sort.py +392 -392
  52. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/wiki_memory.py +548 -548
  53. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/workspace.py +83 -83
  54. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/delphi_lsp/writer.py +73 -73
  55. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/performance-delphi.md +249 -249
  56. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/performance-fpc.md +239 -239
  57. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-2.3.0.md +47 -47
  58. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-2.3.3.md +13 -13
  59. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.0.0.md +64 -64
  60. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.1.0.md +70 -70
  61. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.1.1.md +46 -46
  62. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.1.2.md +39 -39
  63. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.2.0.md +79 -79
  64. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.2.1.md +77 -77
  65. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.2.2.md +52 -52
  66. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.3.0.md +93 -93
  67. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.4.0.md +97 -97
  68. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/release-3.5.0.md +82 -82
  69. python_delphi_lsp-3.6.0/docs/rust-backend-benchmark.md +112 -0
  70. python_delphi_lsp-3.6.0/docs/rust-backend.md +84 -0
  71. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-16-architecture-metrics-implementation.md +360 -360
  72. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-17-large-codebase-performance.md +152 -152
  73. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-22-conditional-outline-ranges.md +48 -48
  74. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-23-2.3-performance.md +385 -385
  75. {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
  76. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-23-delphiast-python-backend.md +102 -102
  77. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-23-parallel-cache-prewarming.md +539 -539
  78. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-24-hybrid-cpg.md +480 -480
  79. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-24-repository-default-navigation.md +53 -53
  80. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-27-okf-memory-progress.md +58 -58
  81. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-27-okf-wiki-export.md +16 -16
  82. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-07-27-project-path-configuration.md +96 -96
  83. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/plans/2026-08-04-release-performance-unblock.md +384 -384
  84. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-16-architecture-metrics-design.md +213 -213
  85. {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
  86. {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
  87. {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
  88. {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
  89. {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
  90. {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
  91. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/docs/superpowers/specs/2026-07-24-hybrid-cpg-design.md +197 -197
  92. {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
  93. {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
  94. {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
  95. {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
  96. {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
  97. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/opencode.json +277 -236
  98. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/pyproject.toml +68 -61
  99. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0/python_delphi_lsp.egg-info}/PKG-INFO +766 -743
  100. python_delphi_lsp-3.6.0/python_delphi_lsp.egg-info/SOURCES.txt +398 -0
  101. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/python_delphi_lsp.egg-info/requires.txt +1 -0
  102. python_delphi_lsp-3.6.0/rust/Cargo.toml +14 -0
  103. python_delphi_lsp-3.6.0/rust/README.md +36 -0
  104. python_delphi_lsp-3.6.0/rust/src/lexer.rs +659 -0
  105. python_delphi_lsp-3.6.0/rust/src/lib.rs +131 -0
  106. python_delphi_lsp-3.6.0/rust/src/parser/mod.rs +441 -0
  107. python_delphi_lsp-3.6.0/rust/src/parser/structure.rs +489 -0
  108. python_delphi_lsp-3.6.0/rust/src/parser/types.rs +2778 -0
  109. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/audit_delphi_language_features.py +456 -456
  110. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_cpg.py +376 -376
  111. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_fpc_corpus.py +2833 -2833
  112. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_github_corpus.py +256 -256
  113. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_parallel_cache.py +71 -71
  114. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/benchmark_response_cache.py +222 -222
  115. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/bootstrap_vllm_codebase_skill_test.py +443 -443
  116. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/bootstrap_vllm_opencode_test.ps1 +29 -29
  117. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/bootstrap_vllm_opencode_test.py +242 -242
  118. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/bootstrap_vllm_opencode_test.sh +7 -7
  119. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/build_github_performance_corpus.py +521 -521
  120. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/check_ornith_cache.py +118 -118
  121. python_delphi_lsp-3.6.0/scripts/eval_all.py +661 -0
  122. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/generate_progress_pdf.py +518 -518
  123. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/generate_release_evidence.py +807 -807
  124. python_delphi_lsp-3.6.0/scripts/lexer_parity.py +474 -0
  125. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/ollama/ornith-lspctx.Modelfile +7 -7
  126. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/outline_gap_detector.py +656 -656
  127. python_delphi_lsp-3.6.0/scripts/parser_differential.py +421 -0
  128. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/prepare_delphi_corpus.py +213 -213
  129. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/prepare_fpc_corpus.py +171 -171
  130. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/prepare_ornith_cache.py +118 -118
  131. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/run_opencode_lsp_probe.py +816 -816
  132. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/run_openrouter_github_e2e.py +1398 -1398
  133. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/start_ornith_vllm.sh +67 -67
  134. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/scripts/summarize_opencode_request_payloads.py +147 -147
  135. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/setup.cfg +4 -4
  136. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/corpora.performance.lock.json +71 -71
  137. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/01_compound_symbols.pas +1 -0
  138. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/02_single_symbols.pas +1 -0
  139. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/03_line_comment.pas +2 -0
  140. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/04_brace_comment.pas +2 -0
  141. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/05_paren_comment.pas +2 -0
  142. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/06_compiler_directive_brace.pas +2 -0
  143. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/07_compiler_directive_paren.pas +2 -0
  144. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/08_string_single.pas +1 -0
  145. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/09_string_escaped.pas +1 -0
  146. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/10_char_code.pas +1 -0
  147. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/11_char_code_hex.pas +1 -0
  148. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/12_hex_number.pas +1 -0
  149. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/13_binary_number.pas +1 -0
  150. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/14_decimal_number.pas +1 -0
  151. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/15_float_number.pas +1 -0
  152. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/16_exp_number.pas +1 -0
  153. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/17_range_vs_float.pas +1 -0
  154. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/18_trailing_dot.pas +1 -0
  155. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/19_ampersian_identifier.pas +1 -0
  156. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/20_ampersian_octal.pas +1 -0
  157. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/21_keywords.pas +1 -0
  158. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/22_identifier.pas +1 -0
  159. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/23_bom.pas +1 -0
  160. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/24_crlf.pas +1 -0
  161. python_delphi_lsp-3.6.0/tests/fixtures/lexer_minimal/25_tab.pas +1 -0
  162. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/library_demo.dpr +20 -20
  163. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/package_demo.dpk +10 -10
  164. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/program_demo.dpr +11 -11
  165. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/01_simple_unit.pas +4 -0
  166. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/02_simple_program.pas +4 -0
  167. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/03_simple_library.pas +4 -0
  168. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/04_simple_package.pas +3 -0
  169. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/05_unit_with_name.pas +4 -0
  170. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/06_uses_single.pas +5 -0
  171. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/07_uses_multiple.pas +5 -0
  172. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/08_uses_with_path.pas +5 -0
  173. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/09_uses_complex_path.pas +5 -0
  174. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/10_uses_in_interface.pas +8 -0
  175. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/11_interface_section.pas +10 -0
  176. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/12_implementation_section.pas +5 -0
  177. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/13_initialization_section.pas +7 -0
  178. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/14_type_section.pas +9 -0
  179. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/15_var_section.pas +7 -0
  180. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/16_const_section.pas +7 -0
  181. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/17_resourcestring_section.pas +7 -0
  182. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/18_threadvar_section.pas +6 -0
  183. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/19_exports_section.pas +5 -0
  184. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/20_multiple_sections.pas +15 -0
  185. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/21_unit_deprecated.pas +4 -0
  186. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/22_unit_experimental.pas +4 -0
  187. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/23_empty_interface.pas +4 -0
  188. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/24_requires_clause.pas +5 -0
  189. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/25_contains_clause.pas +6 -0
  190. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/26_class_declaration.pas +7 -0
  191. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/27_record_declaration.pas +7 -0
  192. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/28_object_declaration.pas +7 -0
  193. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/29_class_with_base.pas +7 -0
  194. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/30_class_with_multiple_bases.pas +11 -0
  195. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/31_record_with_base.pas +9 -0
  196. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/32_visibility_private.pas +9 -0
  197. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/33_visibility_strict_private.pas +9 -0
  198. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/34_visibility_protected.pas +9 -0
  199. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/35_visibility_strict_protected.pas +9 -0
  200. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/36_visibility_public.pas +9 -0
  201. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/37_visibility_published.pas +9 -0
  202. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/38_visibility_automated.pas +9 -0
  203. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/39_field_declaration.pas +10 -0
  204. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/40_method_declaration.pas +10 -0
  205. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/41_method_with_params.pas +10 -0
  206. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/42_property_read_write.pas +11 -0
  207. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/43_property_read_only.pas +11 -0
  208. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/44_property_with_method_read.pas +11 -0
  209. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/45_property_index_default.pas +12 -0
  210. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/46_class_var.pas +11 -0
  211. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/47_class_const.pas +11 -0
  212. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/48_type_alias.pas +7 -0
  213. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/49_enum_declaration.pas +6 -0
  214. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/50_enum_with_values.pas +6 -0
  215. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/51_set_declaration.pas +6 -0
  216. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/52_set_of_char.pas +6 -0
  217. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/53_array_of_int.pas +6 -0
  218. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/54_array_static.pas +6 -0
  219. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/55_pointer_type.pas +10 -0
  220. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/56_procedural_type.pas +8 -0
  221. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/57_procedural_type_with_result.pas +7 -0
  222. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/58_class_of.pas +8 -0
  223. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/59_class_of_anonymous.pas +6 -0
  224. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/60_class_helper.pas +9 -0
  225. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/61_class_helper_full.pas +13 -0
  226. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/62_variant_record.pas +11 -0
  227. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/63_variant_record_simple.pas +10 -0
  228. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/64_generic_class.pas +7 -0
  229. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/65_generic_multiple_params.pas +7 -0
  230. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/66_specialize_generic.pas +8 -0
  231. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/67_generic_with_constraint.pas +7 -0
  232. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/68_generic_with_constructor_constraint.pas +7 -0
  233. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_abstract.pas +12 -0
  234. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_cdecl.pas +13 -0
  235. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_deprecated.pas +13 -0
  236. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_external.pas +9 -0
  237. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_forward.pas +19 -0
  238. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_inline.pas +14 -0
  239. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_overload.pas +18 -0
  240. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_override.pas +20 -0
  241. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_stdcall.pas +13 -0
  242. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/directive_virtual.pas +16 -0
  243. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_cast.pas +17 -0
  244. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_create.pas +26 -0
  245. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_field_chain.pas +25 -0
  246. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_indexing.pas +20 -0
  247. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/expr_operator_precedence.pas +17 -0
  248. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/hang_001.pas +10 -0
  249. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_class_routine.pas +19 -0
  250. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_const.pas +15 -0
  251. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_label.pas +17 -0
  252. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_multi.pas +22 -0
  253. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_multiple.pas +24 -0
  254. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_routine.pas +16 -0
  255. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_routine_nested.pas +25 -0
  256. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/nested_type.pas +18 -0
  257. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_array_of.pas +11 -0
  258. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_const.pas +11 -0
  259. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_default.pas +11 -0
  260. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_out.pas +12 -0
  261. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/param_var.pas +12 -0
  262. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_bad_token.pas +14 -0
  263. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_incomplete.pas +13 -0
  264. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_missing_colon.pas +13 -0
  265. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_missing_end.pas +17 -0
  266. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/recovery_missing_semicolon.pas +18 -0
  267. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_constructor.pas +14 -0
  268. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_destructor.pas +15 -0
  269. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_function.pas +12 -0
  270. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_multiline.pas +19 -0
  271. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_operator.pas +15 -0
  272. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/routine_procedure.pas +11 -0
  273. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_asm.pas +21 -0
  274. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_begin_end.pas +14 -0
  275. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_case_else.pas +18 -0
  276. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_case_of.pas +18 -0
  277. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_for_downto.pas +17 -0
  278. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_for_to.pas +17 -0
  279. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_goto.pas +18 -0
  280. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_if_then.pas +15 -0
  281. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_if_then_else.pas +17 -0
  282. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_raise.pas +14 -0
  283. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_repeat_until.pas +19 -0
  284. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_try_except.pas +19 -0
  285. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_try_finally.pas +21 -0
  286. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_while.pas +18 -0
  287. python_delphi_lsp-3.6.0/tests/fixtures/rust_parity/stmt_with.pas +27 -0
  288. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_advanced.pas +66 -66
  289. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_attributes.pas +25 -25
  290. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_basic.pas +17 -17
  291. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_consumer.pas +19 -19
  292. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_generics.pas +44 -44
  293. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_inheritance.pas +29 -29
  294. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_math.pas +14 -14
  295. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_properties.pas +45 -45
  296. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_sections.pas +19 -19
  297. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_statements.pas +52 -52
  298. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_types.pas +56 -56
  299. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_unresolved.pas +16 -16
  300. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/unit_with.pas +31 -31
  301. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fpc_parse_quality.baseline.json +5430 -5430
  302. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_cache.py +2158 -2158
  303. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_cli_content.py +624 -624
  304. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_cli_errors.py +449 -449
  305. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_codebase.py +1794 -1673
  306. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_context.py +3420 -3420
  307. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_cpg.py +580 -580
  308. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_metrics.py +504 -504
  309. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_protocol.py +724 -724
  310. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_relations.py +2738 -2738
  311. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_wiki.py +1086 -1086
  312. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_worker.py +1103 -1103
  313. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_agent_workspace.py +1388 -1388
  314. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_artifact_cache_cpu_smoke.py +116 -116
  315. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_artifact_cache_integration.py +315 -315
  316. python_delphi_lsp-3.6.0/tests/test_ast_serialize.py +365 -0
  317. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_bootstrap_vllm_codebase_skill.py +199 -199
  318. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_bootstrap_vllm_opencode.py +131 -131
  319. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphi_performance_corpus.py +210 -210
  320. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_lexer.py +284 -284
  321. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_native_compatibility.py +1066 -1066
  322. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_parser.py +331 -331
  323. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_parser_linearity.py +255 -255
  324. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_delphiast_semantic_compatibility.py +73 -73
  325. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_diagnostics.py +22 -22
  326. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_fpc_performance_corpus.py +1069 -1069
  327. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_github_performance_corpus.py +274 -274
  328. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_incremental.py +296 -296
  329. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_incremental_performance.py +58 -58
  330. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_incremental_property.py +560 -560
  331. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_language_feature_matrix.py +98 -98
  332. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_legacy_snippets.py +55 -55
  333. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_lsp_features.py +948 -948
  334. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_lsp_server.py +4005 -4005
  335. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_lsp_support.py +1907 -1907
  336. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_metrics.py +604 -604
  337. python_delphi_lsp-3.6.0/tests/test_native_bridge.py +263 -0
  338. python_delphi_lsp-3.6.0/tests/test_native_optional.py +121 -0
  339. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_navigation_cache.py +80 -80
  340. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_opencode_config.py +143 -109
  341. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_opencode_probe.py +1037 -1037
  342. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_opencode_request_payloads.py +92 -92
  343. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_openrouter_github_e2e.py +1843 -1843
  344. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_ornith_cache_prepare.py +128 -128
  345. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_outline_gap_detector.py +469 -469
  346. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_package_metadata.py +280 -280
  347. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_parallel_outline.py +628 -628
  348. python_delphi_lsp-3.6.0/tests/test_parity_floor.py +455 -0
  349. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_parse_artifacts.py +230 -230
  350. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_parser.py +1752 -1752
  351. python_delphi_lsp-3.6.0/tests/test_parser_backend_switch.py +186 -0
  352. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_parser_backends.py +413 -413
  353. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_preprocessor.py +562 -562
  354. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_progress.py +101 -101
  355. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_project_config.py +210 -210
  356. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_project_discovery.py +965 -965
  357. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_project_indexer.py +634 -634
  358. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_release_evidence.py +734 -734
  359. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_response_cache.py +329 -329
  360. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_response_cache_benchmark.py +53 -53
  361. python_delphi_lsp-3.6.0/tests/test_rust_lexer_parity.py +57 -0
  362. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_semantic.py +987 -987
  363. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_throughput_scaling.py +385 -385
  364. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_vllm_start_script.py +20 -20
  365. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_wiki_external_sort.py +322 -322
  366. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_wiki_memory.py +316 -316
  367. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/test_workspace.py +150 -150
  368. python_delphi_lsp-3.5.0/delphi_lsp/_version.py +0 -1
  369. python_delphi_lsp-3.5.0/delphi_lsp/parser_backend.py +0 -68
  370. python_delphi_lsp-3.5.0/python_delphi_lsp.egg-info/SOURCES.txt +0 -405
  371. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitX.Examples.AssertFailureCompare.pas +0 -84
  372. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitX.Examples.EqualityAsserts.pas +0 -66
  373. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitX.Examples.General.pas +0 -379
  374. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitX.Examples.UITest.pas +0 -89
  375. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_2010.dpr +0 -94
  376. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Berlin.dpr +0 -73
  377. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Rio.dpr +0 -75
  378. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Seattle.dpr +0 -73
  379. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Sydney.dpr +0 -75
  380. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D10Tokyo.dpr +0 -75
  381. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D11Alexandria.dpr +0 -78
  382. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D12Athens.dpr +0 -119
  383. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_D13.dpr +0 -119
  384. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE.dpr +0 -98
  385. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE2.dpr +0 -91
  386. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE3.dpr +0 -86
  387. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE4.dpr +0 -85
  388. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE5.dpr +0 -85
  389. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE6.dpr +0 -85
  390. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE7.dpr +0 -94
  391. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXExamples_XE8.dpr +0 -71
  392. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_D10Berlin.dpr +0 -30
  393. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_D10Seattle.dpr +0 -30
  394. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_D10Tokyo.dpr +0 -30
  395. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_XE5.dpr +0 -30
  396. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_XE6.dpr +0 -30
  397. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_XE7.dpr +0 -30
  398. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXFiremonkeyGUI_XE8.dpr +0 -30
  399. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXVCLGUI_D10Berlin.dpr +0 -59
  400. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXVCLGUI_D10Seattle.dpr +0 -59
  401. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXVCLGUI_XE.dpr +0 -65
  402. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/DUnitXVCLGUI_XE7.dpr +0 -65
  403. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Examples/NonNamespacedExample.pas +0 -30
  404. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.NewProject.pas +0 -213
  405. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.NewTestProject.pas +0 -106
  406. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.NewTestUnit.pas +0 -175
  407. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.NewUnit.pas +0 -186
  408. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.SourceFile.pas +0 -74
  409. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.CodeGen.Templates.pas +0 -284
  410. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.Forms.NewProjectWizard.pas +0 -151
  411. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.Forms.NewUnitWizard.pas +0 -117
  412. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.NewUnitWizard.pas +0 -166
  413. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.NewUnitWizardEx.pas +0 -113
  414. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.ProjectWizard.pas +0 -185
  415. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.ProjectWizardEx.pas +0 -136
  416. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX.Expert.Registration.pas +0 -68
  417. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_2010.dpk +0 -47
  418. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D10Berlin.dpk +0 -51
  419. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D10Rio.dpk +0 -51
  420. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D10Seattle.dpk +0 -51
  421. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D10Tokyo.dpk +0 -51
  422. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D11Alexandria.dpk +0 -51
  423. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D12Athens.dpk +0 -51
  424. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_D13Florence.dpk +0 -51
  425. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_Sydney.dpk +0 -51
  426. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE.dpk +0 -47
  427. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE2.dpk +0 -50
  428. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE3.dpk +0 -50
  429. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE4.dpk +0 -50
  430. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE5.dpk +0 -50
  431. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE6.dpk +0 -50
  432. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE7.dpk +0 -50
  433. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Expert/DUnitX_IDE_Expert_XE8.dpk +0 -50
  434. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/LICENSE.txt +0 -202
  435. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUNitX.Loggers.GUIX.pas +0 -597
  436. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUNitX.Loggers.MobileGUI.pas +0 -427
  437. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Assert.Ex.pas +0 -108
  438. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Assert.pas +0 -1571
  439. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Attributes.pas +0 -476
  440. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.AutoDetect.Console.pas +0 -74
  441. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Banner.pas +0 -79
  442. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.CategoryExpression.pas +0 -293
  443. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.CommandLine.OptionDef.pas +0 -336
  444. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.CommandLine.Options.pas +0 -229
  445. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.CommandLine.Parser.pas +0 -354
  446. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ComparableFormat.Csv.pas +0 -41
  447. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ComparableFormat.Xml.pas +0 -41
  448. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ComparableFormat.pas +0 -39
  449. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ConsoleWriter.Base.pas +0 -251
  450. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Constants.pas +0 -43
  451. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.DUnitCompatibility.pas +0 -458
  452. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Exceptions.pas +0 -91
  453. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Extensibility.pas +0 -249
  454. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.FilterBuilder.pas +0 -127
  455. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Filters.pas +0 -455
  456. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.FixtureBuilder.pas +0 -89
  457. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.FixtureProvider.pas +0 -594
  458. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.FixtureResult.pas +0 -372
  459. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Generics.pas +0 -440
  460. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Helpers.pas +0 -55
  461. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Init.pas +0 -70
  462. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.InternalDataProvider.pas +0 -29
  463. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.InternalInterfaces.pas +0 -87
  464. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Linux.Console.pas +0 -159
  465. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.Console.pas +0 -481
  466. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.GUI.VCL.RichEdit.pas +0 -430
  467. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.GUI.VCL.pas +0 -1557
  468. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.Null.pas +0 -171
  469. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.Text.pas +0 -424
  470. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.XML.JUnit.pas +0 -369
  471. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.XML.NUnit.pas +0 -448
  472. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Loggers.XML.xUnit.pas +0 -36
  473. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MacOS.Console.pas +0 -159
  474. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MemoryLeakMonitor.Default.pas +0 -116
  475. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MemoryLeakMonitor.FastMM4.pas +0 -143
  476. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MemoryLeakMonitor.FastMM5.pas +0 -126
  477. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.MemoryLeaks.inc +0 -34
  478. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.OptionsDefinition.pas +0 -133
  479. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ResStrs.pas +0 -185
  480. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.RunResults.pas +0 -259
  481. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.ServiceLocator.pas +0 -344
  482. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.EurekaLog7.pas +0 -115
  483. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.JCL.pas +0 -133
  484. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.MadExcept3.pas +0 -108
  485. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.MadExcept4.pas +0 -120
  486. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.StackTrace.MadExcept5.pas +0 -105
  487. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Stacktrace.inc +0 -43
  488. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Test.pas +0 -452
  489. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestDataProvider.pas +0 -112
  490. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestFixture.pas +0 -637
  491. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestFramework.pas +0 -936
  492. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestNameParser.pas +0 -174
  493. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestResult.pas +0 -286
  494. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.TestRunner.pas +0 -1082
  495. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Timeout.pas +0 -181
  496. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Types.pas +0 -59
  497. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Utils.XML.pas +0 -138
  498. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Utils.pas +0 -3572
  499. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.WeakReference.pas +0 -365
  500. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.Windows.Console.pas +0 -227
  501. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Source/DUnitX.inc +0 -115
  502. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Options.pas +0 -81
  503. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.SingleNameSpace.pas +0 -43
  504. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Stacktrace.inc +0 -7
  505. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Assert.pas +0 -1536
  506. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.CategoryParser.pas +0 -246
  507. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.CommandLineParser.pas +0 -516
  508. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.ConsoleWriter.Base.pas +0 -377
  509. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.DUnitCompatibility.pas +0 -98
  510. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Example.pas +0 -427
  511. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Framework.pas +0 -7
  512. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.IgnoreFixture.pas +0 -119
  513. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Inheritance.pas +0 -113
  514. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.IoC.pas +0 -176
  515. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Loggers.XML.JUnit.pas +0 -279
  516. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Loggers.XML.NUnit.pas +0 -279
  517. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.MemoryLeaks.pas +0 -96
  518. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.TestDataProvider.pas +0 -141
  519. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.TestFixture.pas +0 -302
  520. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.TestNameParser.pas +0 -65
  521. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Utils.XML.pas +0 -33
  522. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.Utils.pas +0 -269
  523. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitX.Tests.WeakReference.pas +0 -196
  524. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitXGuiTest.dpr +0 -48
  525. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitXTestProject.dpr +0 -92
  526. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitXTest_D2010.dpr +0 -131
  527. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/Tests/DUnitXTest_XE.dpr +0 -130
  528. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.0/VSoft.DUnitXWinR.dpk +0 -88
  529. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.1/VSoft.DUnitXWinR.dpk +0 -88
  530. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.2/VSoft.DUnitXWinR.dpk +0 -88
  531. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.3/VSoft.DUnitXWinR.dpk +0 -88
  532. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 10.4/VSoft.DUnitXWinR.dpk +0 -88
  533. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 11.0/VSoft.DUnitXWinR.dpk +0 -88
  534. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 12.0/VSoft.DUnitXWinR.dpk +0 -88
  535. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio 13.0/VSoft.DUnitXWinR.dpk +0 -88
  536. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE2/VSoft.DUnitXWinR.dpk +0 -88
  537. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE3/VSoft.DUnitXWinR.dpk +0 -88
  538. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE4/VSoft.DUnitXWinR.dpk +0 -88
  539. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE5/VSoft.DUnitXWinR.dpk +0 -88
  540. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE6/VSoft.DUnitXWinR.dpk +0 -88
  541. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE7/VSoft.DUnitXWinR.dpk +0 -88
  542. python_delphi_lsp-3.5.0/test_projects/github_repos/DUnitX/packages/RAD Studio XE8/VSoft.DUnitXWinR.dpk +0 -88
  543. python_delphi_lsp-3.5.0/test_projects/github_repos/mORMot2/LICENCE.md +0 -81
  544. python_delphi_lsp-3.5.0/test_projects/github_repos/mORMot2/src/mormot.defines.inc +0 -1121
  545. python_delphi_lsp-3.5.0/test_projects/github_repos/mORMot2/src/ui/mormot.ui.pdf.pas +0 -12508
  546. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/python_delphi_lsp.egg-info/dependency_links.txt +0 -0
  547. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/python_delphi_lsp.egg-info/entry_points.txt +0 -0
  548. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/python_delphi_lsp.egg-info/top_level.txt +0 -0
  549. {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
  550. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/DeprecatedOnConst.pas +0 -0
  551. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/VariantRecordFieldAttributes.pas +0 -0
  552. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/alignedrecords.pas +0 -0
  553. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/constset.pas +0 -0
  554. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/deprecatedtype.pas +0 -0
  555. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/dottedtypes.pas +0 -0
  556. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/endtoken.pas +0 -0
  557. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/experimentals.pas +0 -0
  558. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/externalfunction.pas +0 -0
  559. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/finalizationinitializationexports.pas +0 -0
  560. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/forwardoverloaded.pas +0 -0
  561. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/forwardwithoutsemicolon.pas +0 -0
  562. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/genericconstraints.pas +0 -0
  563. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/genericinterfacemethoddelegation.pas +0 -0
  564. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/implementsgenerictype.pas +0 -0
  565. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/include file2.inc +0 -0
  566. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/includefile.inc +0 -0
  567. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/includefile.pas +0 -0
  568. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/managedrecords.pas +0 -0
  569. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/messagemethod.pas +0 -0
  570. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/multiline.pas +0 -0
  571. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/nonalignedrecords.pas +0 -0
  572. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/numbers.pas +0 -0
  573. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/pointerchars.pas +0 -0
  574. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/properties.pas +0 -0
  575. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/strictvisibility.pas +0 -0
  576. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/tryexcept.pas +0 -0
  577. {python_delphi_lsp-3.5.0 → python_delphi_lsp-3.6.0}/tests/fixtures/legacy_snippets/umlauts.pas +0 -0
  578. {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
- jobs:
9
- test:
10
- name: ${{ matrix.os }} / Python ${{ matrix.python }}
11
- runs-on: ${{ matrix.os }}
12
- timeout-minutes: 20
13
- strategy:
14
- fail-fast: false
15
- matrix:
16
- os: [ubuntu-latest, macos-latest, windows-latest]
17
- python: ["3.10", "3.14"]
18
- steps:
19
- - uses: actions/checkout@v4
20
- - uses: actions/setup-python@v5
21
- with:
22
- python-version: ${{ matrix.python }}
23
- cache: pip
24
- cache-dependency-path: pyproject.toml
25
- - run: python -m pip install --upgrade pip
26
- - run: pip install .[test]
27
- - run: pytest
28
-
29
- package:
30
- name: Build and validate distributions
31
- runs-on: ubuntu-latest
32
- timeout-minutes: 20
33
- steps:
34
- - uses: actions/checkout@v4
35
- - uses: actions/setup-python@v5
36
- with:
37
- python-version: "3.14"
38
- cache: pip
39
- cache-dependency-path: pyproject.toml
40
- - run: python -m pip install --upgrade pip build twine
41
- - run: python -m build
42
- - run: python -m twine check dist/*
43
- - name: Run tests from unpacked sdist
44
- run: |
45
- mkdir sdist-smoke
46
- tar -xzf dist/*.tar.gz -C sdist-smoke --strip-components=1
47
- python -m pip install "./sdist-smoke[test]"
48
- python -m pytest sdist-smoke/tests
49
- - run: python -m venv smoke-venv
50
- - run: smoke-venv/bin/python -m pip install dist/*.whl
51
- - 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__)"
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__)"