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/BackEnd/SimCode.mo
+9-4Lines changed: 9 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -6307,9 +6307,11 @@ algorithm
6307
6307
Boolean tup,builtin_;
6308
6308
DAE.ExpType exty;
6309
6309
DAE.InlineType inty;
6310
+
6310
6311
case ({},_,_,_) then ("",{});
6311
-
//expand sample conditions with helpindex
6312
-
case ((e as DAE.CALL(path = name as Absyn.IDENT("sample"),expLst=args_,tuple_=tup,builtin=builtin_, ty=exty, inlineType=inty) :: el),i,helpVarIndex, false)
6312
+
6313
+
//expand sample conditions with helpindex
6314
+
case ((e as DAE.CALL(path = name as Absyn.IDENT("sample"),expLst=args_,tuple_=tup,builtin=builtin_, ty=exty, inlineType=inty)) :: el,i,helpVarIndex, false)
6313
6315
equation
6314
6316
i_str = intString(i);
6315
6317
helpVarIndexStr = intString(helpVarIndex);
@@ -6324,8 +6326,8 @@ algorithm
6324
6326
res_1 = stringAppend(res, resx);
6325
6327
then
6326
6328
(res_1,(helpInfo :: helpVarInfoList));
6327
-
//expand sample conditions with helpindex
6328
-
case ((e as DAE.CALL(path = name as Absyn.IDENT("sample"),expLst=args_,tuple_=tup,builtin=builtin_, ty=exty, inlineType=inty) :: el),i,helpVarIndex, true)
6329
+
//expand sample conditions with helpindex
6330
+
case ((e as DAE.CALL(path = name as Absyn.IDENT("sample"),expLst=args_,tuple_=tup,builtin=builtin_, ty=exty, inlineType=inty)) :: el,i,helpVarIndex, true)
0 commit comments