aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/lsp/workspace.py
diff options
context:
space:
mode:
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):