aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/lsp/workspace.py
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2023-01-26 18:27:30 +0100
committerTristan Gingold <tgingold@free.fr>2023-01-26 21:56:33 +0100
commit446f15d3b4b410fc7a9443a6bd010e8d1db735bd (patch)
tree2865d0161e04e97bac8f1e3dc89dcf9391330618 /pyGHDL/lsp/workspace.py
parentab3c672925cb214be9d732835e891557a511b173 (diff)
downloadghdl-446f15d3b4b410fc7a9443a6bd010e8d1db735bd.tar.gz
ghdl-446f15d3b4b410fc7a9443a6bd010e8d1db735bd.tar.bz2
ghdl-446f15d3b4b410fc7a9443a6bd010e8d1db735bd.zip
pyGHDL/lsp: update, handle hover
Diffstat (limited to 'pyGHDL/lsp/workspace.py')
-rw-r--r--pyGHDL/lsp/workspace.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/pyGHDL/lsp/workspace.py b/pyGHDL/lsp/workspace.py
index 88200bc49..fe808c23c 100644
--- a/pyGHDL/lsp/workspace.py
+++ b/pyGHDL/lsp/workspace.py
@@ -46,6 +46,8 @@ class Workspace(object):
errorout_memory.Install_Handler()
flags.Flag_Elocations.value = True
# flags.Verbose.value = True
+ # Gather comments
+ flags.Flag_Gather_Comments.value = True
# We do analysis even in case of errors.
parse.Flag_Parse_Parenthesis.value = True
# Force analysis to get more feedback + navigation even in case
@@ -393,12 +395,16 @@ class Workspace(object):
if decl_loc is None:
return None
res = [decl_loc]
+ # If the declaration is a component, also add the entity.
if nodes.Get_Kind(decl) == nodes.Iir_Kind.Component_Declaration:
ent = libraries.Find_Entity_For_Component(nodes.Get_Identifier(decl))
if ent != nodes.Null_Iir:
res.append(self.declaration_to_location(nodes.Get_Library_Unit(ent)))
return res
+ def hover(self, doc_uri, position):
+ return self._docs[doc_uri].hover(position)
+
def x_show_all_files(self):
res = []
for fe in range(1, files_map.Get_Last_Source_File_Entry() + 1):