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
123 stars 24 forks source link

ST6RI-697 Feature chains in Action or Interconnection views are not properly rendered #485

Closed himi closed 1 year ago

himi commented 1 year ago

The visualizer could not properly render feature chains in behavioural rendering, used by Action, State, Interconnection, Case views. The example below

action a {
    action a1 {
        action a11;
    }
    action a12;
    first a1.a11 then a12;
}

is wrongly rendered as: Screenshot 2023-06-28 at 3 06 12 PM

himi commented 1 year ago

After the fix, the example is correctly rendered as: Screenshot 2023-06-28 at 5 01 27 PM