aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2022-07-22 05:33:52 +0200
committerTristan Gingold <tgingold@free.fr>2022-07-22 05:33:52 +0200
commit8be816aaeae02d1fe190a39d21260cb9cec29bc5 (patch)
tree626804c7305e917b93566412cf729c22d3c3ff28 /pyGHDL
parent79d140f39eb30e78655ecf448df8be48d22f6af3 (diff)
downloadghdl-8be816aaeae02d1fe190a39d21260cb9cec29bc5.tar.gz
ghdl-8be816aaeae02d1fe190a39d21260cb9cec29bc5.tar.bz2
ghdl-8be816aaeae02d1fe190a39d21260cb9cec29bc5.zip
pyGHDL/lsp: fix after renaming
Diffstat (limited to 'pyGHDL')
-rw-r--r--pyGHDL/lsp/symbols.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyGHDL/lsp/symbols.py b/pyGHDL/lsp/symbols.py
index a77d740c0..fdb090221 100644
--- a/pyGHDL/lsp/symbols.py
+++ b/pyGHDL/lsp/symbols.py
@@ -39,7 +39,7 @@ SYMBOLS_MAP = {
nodes.Iir_Kind.Variable_Declaration: {"kind": lsp.SymbolKind.Variable},
nodes.Iir_Kind.Constant_Declaration: {"kind": lsp.SymbolKind.Constant},
nodes.Iir_Kind.Signal_Declaration: {"kind": lsp.SymbolKind.Variable},
- nodes.Iir_Kind.Signal_Attribute_Declaration: {"kind": None},
+ nodes.Iir_Kind.Attribute_Implicit_Declaration: {"kind": None},
nodes.Iir_Kind.Interface_Variable_Declaration: {"kind": lsp.SymbolKind.Variable},
nodes.Iir_Kind.Interface_Constant_Declaration: {"kind": lsp.SymbolKind.Constant},
nodes.Iir_Kind.Interface_Signal_Declaration: {"kind": lsp.SymbolKind.Variable},