aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/lsp/symbols.py
diff options
context:
space:
mode:
authorPatrick Lehmann <Patrick.Lehmann@plc2.de>2021-06-16 21:38:52 +0200
committertgingold <tgingold@users.noreply.github.com>2021-06-17 21:23:58 +0200
commitbbc2055c97526a53c895214fd09caeace95e56fa (patch)
treef60bbaf3fe5fafaf06ec0fd1b9a7787afcc16b1c /pyGHDL/lsp/symbols.py
parent9772172e61165bb0aec9cd9cf63d1b491a584eba (diff)
downloadghdl-bbc2055c97526a53c895214fd09caeace95e56fa.tar.gz
ghdl-bbc2055c97526a53c895214fd09caeace95e56fa.tar.bz2
ghdl-bbc2055c97526a53c895214fd09caeace95e56fa.zip
Removed duplicate keys in dictionary.
(cherry picked from commit 2ab737115eb3fe650cfc559fd3f5a9a3ef9656e7)
Diffstat (limited to 'pyGHDL/lsp/symbols.py')
-rw-r--r--pyGHDL/lsp/symbols.py2
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},
}