aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/lsp/references.py
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2023-01-27 07:51:46 +0100
committerTristan Gingold <tgingold@free.fr>2023-01-27 07:51:46 +0100
commit756b1fd183ab96edd0f330fcc2b411f6e71577f1 (patch)
tree7314e88a29eaa3d72bb18662c37ed68dd7eda17b /pyGHDL/lsp/references.py
parent1e6bc1de7196b5b9d9aa771124632f46f620be1a (diff)
downloadghdl-756b1fd183ab96edd0f330fcc2b411f6e71577f1.tar.gz
ghdl-756b1fd183ab96edd0f330fcc2b411f6e71577f1.tar.bz2
ghdl-756b1fd183ab96edd0f330fcc2b411f6e71577f1.zip
pyGHDL: reformatting
Diffstat (limited to 'pyGHDL/lsp/references.py')
-rw-r--r--pyGHDL/lsp/references.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/pyGHDL/lsp/references.py b/pyGHDL/lsp/references.py
index 2adde0fed..db72865b1 100644
--- a/pyGHDL/lsp/references.py
+++ b/pyGHDL/lsp/references.py
@@ -135,12 +135,14 @@ def find_def(n, loc):
return None
+
def find_node_by_loc(n, loc):
"""Return the denoting node for :param loc: or None."""
ref = find_def(n, loc)
log.debug("for loc %u found node %s", loc, ref)
return ref
+
def find_definition_by_loc(n, loc):
"""Return the declaration (as a node) under :param loc: or None."""
ref = find_node_by_loc(n, loc)