diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-12-21 08:27:56 +0100 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-12-21 08:27:56 +0100 |
commit | d45f4a31e557d54314765265d8f488a45dc8fc30 (patch) | |
tree | b07084d767d2652029cd34649d0b9cbe6788b2eb /testsuite/pyunit/libghdl/examples/Complex.vhdl | |
parent | 432c019c1113b880fc554e94e9a66b7efd1d303b (diff) | |
download | ghdl-d45f4a31e557d54314765265d8f488a45dc8fc30.tar.gz ghdl-d45f4a31e557d54314765265d8f488a45dc8fc30.tar.bz2 ghdl-d45f4a31e557d54314765265d8f488a45dc8fc30.zip |
testsuite/pyunit/libghdl: adjust Complex, add Complex_Multilines
Diffstat (limited to 'testsuite/pyunit/libghdl/examples/Complex.vhdl')
-rw-r--r-- | testsuite/pyunit/libghdl/examples/Complex.vhdl | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/testsuite/pyunit/libghdl/examples/Complex.vhdl b/testsuite/pyunit/libghdl/examples/Complex.vhdl index 87276a2d5..40eaa80ff 100644 --- a/testsuite/pyunit/libghdl/examples/Complex.vhdl +++ b/testsuite/pyunit/libghdl/examples/Complex.vhdl @@ -14,8 +14,6 @@ end architecture; package p1 is end package; --- package body should be supported too to keep parity, but I have currently no usecase for it. - -- :ctx1: comments before design units -- :ctx1: might be multiline context ctx1 is @@ -41,7 +39,7 @@ entity e2 is constant FREQUENCY : positive; constant BITS : positive; -- :BITS: comment after a generic are mostly single line, -- :BITS: but could be multi line too - -- in case comment is before and after + -- :BITS: in case comment is before and after constant DEBUG : boolean -- :DEBUG: the after has presidency ); port ( @@ -56,7 +54,7 @@ begin end architecture; --- As packages define public elements like constants, types and sub-programs, we are interested in such documentation too. +-- :p2: As packages define public elements like constants, types and sub-programs, we are interested in such documentation too. package p2 is -- :p2: comments in design units (python doc-string style) -- :p2: might be multi line |