commit bf9700259f0c9603809e973f3fdaf564afe9144a
parent 1b46daa3f636f0447416c3cbd8f927cc2ca795d2
Author: Morel BĂ©renger <berengermorel76@gmail.com>
Date: Mon, 4 Sep 2023 13:33:14 +0200
do not consider scope for enum values
Diffstat:
1 file changed, 10 insertions(+), 0 deletions(-)
diff --git a/uml b/uml
@@ -151,6 +151,16 @@ $1 == "val" {
printf( "\l" );
}
+$1 == "eval" {
+ if( inside != "eval" )
+ {
+ printf( "|" );
+ inside = "eval";
+ }
+ printf( "%s", $2 );
+ printf( "\l" );
+}
+
$1 == "inherit" {
end_class();
relation( $2, $3, "none", "empty" );