aboutsummaryrefslogtreecommitdiffstats
path: root/src/vhdl/python/libghdl
diff options
context:
space:
mode:
authorTristan Gingold <tgingold@free.fr>2017-10-24 19:18:35 +0200
committerTristan Gingold <tgingold@free.fr>2017-10-24 19:18:35 +0200
commita4c7b63f27c3151b3229444a75cedd0868455462 (patch)
tree5e6a1f2133a3f3964484cbff1a05b96fc9ef1635 /src/vhdl/python/libghdl
parent782ae0cb5931974eca5b6ce7fa777560e7e91527 (diff)
downloadghdl-a4c7b63f27c3151b3229444a75cedd0868455462.tar.gz
ghdl-a4c7b63f27c3151b3229444a75cedd0868455462.tar.bz2
ghdl-a4c7b63f27c3151b3229444a75cedd0868455462.zip
python interface: fix previous path on iter_declaration.
Diffstat (limited to 'src/vhdl/python/libghdl')
-rw-r--r--src/vhdl/python/libghdl/thinutils.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/src/vhdl/python/libghdl/thinutils.py b/src/vhdl/python/libghdl/thinutils.py
index 4efa08acf..4f43bfdb7 100644
--- a/src/vhdl/python/libghdl/thinutils.py
+++ b/src/vhdl/python/libghdl/thinutils.py
@@ -129,8 +129,14 @@ def declarations_iter(n):
if nodes_meta.Has_Declaration_Chain(k):
for n1 in chain_iter(iirs.Get_Declaration_Chain(n)):
k1 = iirs.Get_Kind(n1)
- if k1 not in iirs.Iir_Kinds.Specification \
- and k1 != iirs.Iir_Kind.Use_Clause:
+ if k1 in iirs.Iir_Kinds.Specification \
+ or k1 == iirs.Iir_Kind.Use_Clause:
+ # Not a declaration
+ pass
+ elif k1 == iirs.Iir_Kind.Signal_Attribute_Declaration:
+ # Not a declaration
+ pass
+ else:
yield n1
# There can be nested declarations (subprograms,
# record elements)
@@ -197,6 +203,7 @@ def declarations_iter(n):
iirs.Iir_Kind.Object_Alias_Declaration,
iirs.Iir_Kind.Attribute_Declaration,
iirs.Iir_Kind.Component_Declaration,
+ iirs.Iir_Kind.Use_Clause,
iirs.Iir_Kind.If_Statement,
iirs.Iir_Kind.Elsif,
iirs.Iir_Kind.Return_Statement,