python-delphi-lsp 2.0.3__py3-none-any.whl → 2.0.5__py3-none-any.whl
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.
- delphi_lsp/__init__.py +3 -0
- delphi_lsp/_version.py +1 -1
- delphi_lsp/agent_cache.py +710 -0
- delphi_lsp/agent_cli.py +145 -3
- delphi_lsp/agent_context.py +30 -1
- delphi_lsp/agent_layers.py +115 -6
- delphi_lsp/agent_relations.py +0 -1
- delphi_lsp/agent_workspace.py +7 -0
- delphi_lsp/binary.py +0 -1
- delphi_lsp/lsp_server.py +195 -35
- delphi_lsp/preprocessor.py +32 -10
- delphi_lsp/progress.py +26 -0
- delphi_lsp/project_discovery.py +125 -16
- delphi_lsp/project_indexer.py +43 -1
- delphi_lsp/semantic.py +1 -1
- {python_delphi_lsp-2.0.3.dist-info → python_delphi_lsp-2.0.5.dist-info}/METADATA +73 -3
- python_delphi_lsp-2.0.5.dist-info/RECORD +36 -0
- python_delphi_lsp-2.0.3.dist-info/RECORD +0 -34
- {python_delphi_lsp-2.0.3.dist-info → python_delphi_lsp-2.0.5.dist-info}/WHEEL +0 -0
- {python_delphi_lsp-2.0.3.dist-info → python_delphi_lsp-2.0.5.dist-info}/entry_points.txt +0 -0
- {python_delphi_lsp-2.0.3.dist-info → python_delphi_lsp-2.0.5.dist-info}/licenses/LICENSE +0 -0
- {python_delphi_lsp-2.0.3.dist-info → python_delphi_lsp-2.0.5.dist-info}/top_level.txt +0 -0
delphi_lsp/__init__.py
CHANGED
|
@@ -48,6 +48,7 @@ from .semantic_builder import SemanticBuilder, SemanticModel, SemanticProblem
|
|
|
48
48
|
from .workspace import WorkspaceSemanticResult, build_workspace_semantics
|
|
49
49
|
from .lsp_server import LspWorkspaceState, create_server
|
|
50
50
|
from .project_discovery import DelphiProjectDiscovery, DiscoveryProblem, discover_delphi_project
|
|
51
|
+
from .progress import ProgressCallback, ProgressEvent
|
|
51
52
|
from .project_indexer import (
|
|
52
53
|
GetUnitSyntaxHook,
|
|
53
54
|
IncludeFileInfo,
|
|
@@ -136,6 +137,8 @@ __all__ = [
|
|
|
136
137
|
'DelphiProjectDiscovery',
|
|
137
138
|
'DiscoveryProblem',
|
|
138
139
|
'discover_delphi_project',
|
|
140
|
+
'ProgressCallback',
|
|
141
|
+
'ProgressEvent',
|
|
139
142
|
'ProjectIndexer',
|
|
140
143
|
'ProjectIndexResult',
|
|
141
144
|
'ProjectProblemType',
|
delphi_lsp/_version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
__version__ = "2.0.
|
|
1
|
+
__version__ = "2.0.5"
|