aboutsummaryrefslogtreecommitdiffstats
path: root/pyGHDL/dom/formatting/prettyprint.py
diff options
context:
space:
mode:
Diffstat (limited to 'pyGHDL/dom/formatting/prettyprint.py')
-rw-r--r--pyGHDL/dom/formatting/prettyprint.py14
1 files changed, 13 insertions, 1 deletions
diff --git a/pyGHDL/dom/formatting/prettyprint.py b/pyGHDL/dom/formatting/prettyprint.py
index cdb1964c0..13f18f729 100644
--- a/pyGHDL/dom/formatting/prettyprint.py
+++ b/pyGHDL/dom/formatting/prettyprint.py
@@ -3,6 +3,7 @@ from typing import List, Union
from pydecor import export
from pyGHDL.dom.Misc import Alias
+from pyGHDL.dom.Subprogram import Procedure
from pyGHDL.dom.Type import IntegerType, SubType
from pyVHDLModel.VHDLModel import (
GenericInterfaceItem,
@@ -345,11 +346,22 @@ class PrettyPrint:
name=item.Name,
)
)
+ elif isinstance(item, Procedure):
+ buffer.append(
+ "{prefix}- procedure {name}".format(
+ prefix=prefix,
+ name=item.Name,
+ )
+ )
elif isinstance(item, Component):
for line in self.formatComponent(item, level):
buffer.append(line)
else:
- raise PrettyPrintException("Unhandled declared item kind.")
+ raise PrettyPrintException(
+ "Unhandled declared item kind '{name}'.".format(
+ name=item.__class__.__name__
+ )
+ )
return buffer