Systems-Modeling / SysML-v2-Pilot-Implementation

Proof-of-concept pilot implementation of the SysML v2 textual notation and visualization
GNU Lesser General Public License v3.0
114 stars 23 forks source link

ST6RI-778: Inherited elements of non-standard libraries are not shown (PlantUML) #573

Closed himi closed 1 week ago

himi commented 1 week ago

Because of my mistake in ST6RI-771 (PR #566), inherited features of non-standard library are wrongly hidden. So the example below:

package TestStdLib {
    part def P1 {
        part p1;
    }

    part p : P1 {
        part p2;
        connect p1 to p2;
    }   
}

is wrongly rendered as: image

himi commented 1 week ago

By this fix, it is correctly rendered as:

image