diff options
author | Patrick Lehmann <Patrick.Lehmann@plc2.de> | 2021-06-16 21:38:52 +0200 |
---|---|---|
committer | tgingold <tgingold@users.noreply.github.com> | 2021-06-17 21:23:58 +0200 |
commit | bbc2055c97526a53c895214fd09caeace95e56fa (patch) | |
tree | f60bbaf3fe5fafaf06ec0fd1b9a7787afcc16b1c /pyGHDL | |
parent | 9772172e61165bb0aec9cd9cf63d1b491a584eba (diff) | |
download | ghdl-bbc2055c97526a53c895214fd09caeace95e56fa.tar.gz ghdl-bbc2055c97526a53c895214fd09caeace95e56fa.tar.bz2 ghdl-bbc2055c97526a53c895214fd09caeace95e56fa.zip |
Removed duplicate keys in dictionary.
(cherry picked from commit 2ab737115eb3fe650cfc559fd3f5a9a3ef9656e7)
Diffstat (limited to 'pyGHDL')
-rw-r--r-- | pyGHDL/lsp/symbols.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/pyGHDL/lsp/symbols.py b/pyGHDL/lsp/symbols.py index 3a0f1da30..9546ab548 100644 --- a/pyGHDL/lsp/symbols.py +++ b/pyGHDL/lsp/symbols.py @@ -40,7 +40,6 @@ SYMBOLS_MAP = { 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.File_Declaration: {"kind": lsp.SymbolKind.File}, 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}, @@ -69,7 +68,6 @@ SYMBOLS_MAP = { nodes.Iir_Kind.Psl_Restrict_Directive: {"kind": lsp.SymbolKind.Method}, nodes.Iir_Kind.Psl_Endpoint_Declaration: {"kind": lsp.SymbolKind.Variable}, nodes.Iir_Kind.Psl_Declaration: {"kind": lsp.SymbolKind.Variable}, - nodes.Iir_Kind.Psl_Assert_Directive: {"kind": lsp.SymbolKind.Method}, nodes.Iir_Kind.Configuration_Specification: {"kind": None}, } |