File tree Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Expand file tree Collapse file tree 3 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -44,6 +44,12 @@ Exceptions
44
44
45
45
Message Handling
46
46
----------------
47
+
48
+ .. warning ::
49
+
50
+ The ``MessagePrinter `` and ``MessageHandler `` classes will be deprecated in
51
+ a future release. See the following page for details: https://github.com/SystemRDL/systemrdl-compiler/issues/168
52
+
47
53
.. autoclass :: systemrdl.messages.MessagePrinter
48
54
:members:
49
55
Original file line number Diff line number Diff line change @@ -104,6 +104,10 @@ def __init__(self, **kwargs: Any):
104
104
raise TypeError ("got an unexpected keyword argument '%s'" % list (kwargs .keys ())[0 ])
105
105
106
106
#: Reference to the compiler's :class:`~systemrdl.messages.MessageHandler` object
107
+ #:
108
+ #: .. warning::
109
+ #:
110
+ #: This will be deprecated in a future release. See this page for more details: https://github.com/SystemRDL/systemrdl-compiler/issues/168
107
111
self .msg = self .env .msg
108
112
109
113
self .namespace = NamespaceRegistry (self .env ) # type: NamespaceRegistry
Original file line number Diff line number Diff line change @@ -25,6 +25,10 @@ def __init__(self, compiler: RDLCompiler):
25
25
self .compiler = compiler
26
26
27
27
#: Reference to the compiler message handler
28
+ #:
29
+ #: .. warning::
30
+ #:
31
+ #: This will be deprecated in a future release. See this page for more details: https://github.com/SystemRDL/systemrdl-compiler/issues/168
28
32
self .msg = compiler .env .msg
29
33
30
34
#: Source reference used by default when not specified in importer
You can’t perform that action at this time.
0 commit comments