diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-07-22 05:33:52 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-07-22 05:33:52 +0200 |
commit | 8be816aaeae02d1fe190a39d21260cb9cec29bc5 (patch) | |
tree | 626804c7305e917b93566412cf729c22d3c3ff28 /pyGHDL/lsp | |
parent | 79d140f39eb30e78655ecf448df8be48d22f6af3 (diff) | |
download | ghdl-8be816aaeae02d1fe190a39d21260cb9cec29bc5.tar.gz ghdl-8be816aaeae02d1fe190a39d21260cb9cec29bc5.tar.bz2 ghdl-8be816aaeae02d1fe190a39d21260cb9cec29bc5.zip |
pyGHDL/lsp: fix after renaming
Diffstat (limited to 'pyGHDL/lsp')
-rw-r--r-- | pyGHDL/lsp/symbols.py | 2 |
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}, |