aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2021-07-22 19:10:49 +0200
committerTristan Gingold <tgingold@free.fr>2021-07-22 19:10:49 +0200
commit0a6a66383e576a1b3a14d6b3318ee91daf6923f5 (patch)
treee6d60299d57c731161c4e7b5ae53057e66e9b217 /pyGHDL
parent9399661b8ea5a22eedad2391927802271abc45a1 (diff)
downloadghdl-0a6a66383e576a1b3a14d6b3318ee91daf6923f5.tar.gz
ghdl-0a6a66383e576a1b3a14d6b3318ee91daf6923f5.tar.bz2
ghdl-0a6a66383e576a1b3a14d6b3318ee91daf6923f5.zip
lsp/symbols.py: handle simultaneous null statement.
Diffstat (limited to 'pyGHDL')
-rw-r--r--pyGHDL/lsp/symbols.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyGHDL/lsp/symbols.py b/pyGHDL/lsp/symbols.py
index 9546ab548..1d863a12f 100644
--- a/pyGHDL/lsp/symbols.py
+++ b/pyGHDL/lsp/symbols.py
@@ -62,6 +62,7 @@ SYMBOLS_MAP = {
nodes.Iir_Kind.Case_Generate_Statement: {"kind": lsp.SymbolKind.Method},
nodes.Iir_Kind.Sensitized_Process_Statement: {"kind": lsp.SymbolKind.Method},
nodes.Iir_Kind.Process_Statement: {"kind": lsp.SymbolKind.Method},
+ nodes.Iir_Kind.Simultaneous_Null_Statement: {"kind": lsp.SymbolKind.Method},
nodes.Iir_Kind.Psl_Assert_Directive: {"kind": lsp.SymbolKind.Method},
nodes.Iir_Kind.Psl_Assume_Directive: {"kind": lsp.SymbolKind.Method},
nodes.Iir_Kind.Psl_Cover_Directive: {"kind": lsp.SymbolKind.Method},