diff options
author | Tristan Gingold <tgingold@free.fr> | 2021-07-22 19:10:49 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2021-07-22 19:10:49 +0200 |
commit | 0a6a66383e576a1b3a14d6b3318ee91daf6923f5 (patch) | |
tree | e6d60299d57c731161c4e7b5ae53057e66e9b217 /pyGHDL/lsp | |
parent | 9399661b8ea5a22eedad2391927802271abc45a1 (diff) | |
download | ghdl-0a6a66383e576a1b3a14d6b3318ee91daf6923f5.tar.gz ghdl-0a6a66383e576a1b3a14d6b3318ee91daf6923f5.tar.bz2 ghdl-0a6a66383e576a1b3a14d6b3318ee91daf6923f5.zip |
lsp/symbols.py: handle simultaneous null statement.
Diffstat (limited to 'pyGHDL/lsp')
-rw-r--r-- | pyGHDL/lsp/symbols.py | 1 |
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}, |