You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Compiler/SimCode/SimCodeUtil.mo
+20-7Lines changed: 20 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -7690,28 +7690,41 @@ algorithm
7690
7690
Integer i;
7691
7691
DAE.ComponentRef name, name2;
7692
7692
Option<DAE.Exp> init;
7693
+
Option<DAE.ComponentRef> arrCref;
7694
+
Option<Integer> variable_index;
7693
7695
SimCodeVar.AliasVariable aliasvar;
7694
-
String s1, s2;
7695
-
case (SimCodeVar.SIMVAR(name= name, aliasvar = SimCodeVar.NOALIAS(), index = i, initialValue=init))
7696
+
String s1, s2, s3;
7697
+
list<String> numArrayElement;
7698
+
case (SimCodeVar.SIMVAR(name= name, aliasvar = SimCodeVar.NOALIAS(), index = i, initialValue=init, arrayCref=arrCref,variable_index=variable_index, numArrayElement=numArrayElement))
0 commit comments