File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -689,6 +689,7 @@ algorithm
689
689
case (SOME (DAE . VAR_ATTR_INT (initial_ = SOME (r))),_) then r;
690
690
case (SOME (DAE . VAR_ATTR_BOOL (initial_ = SOME (r))),_) then r;
691
691
case (SOME (DAE . VAR_ATTR_STRING (initial_ = SOME (r))),_) then r;
692
+ case (SOME (DAE . VAR_ATTR_ENUMERATION (start = SOME (r))),_) then r;
692
693
case (_,optExp) then optExp;
693
694
end matchcontinue;
694
695
end getStartAttrEmpty;
@@ -728,7 +729,7 @@ algorithm
728
729
case (SOME (DAE . VAR_ATTR_INT (initial_ = SOME (r)))) then r;
729
730
case (SOME (DAE . VAR_ATTR_BOOL (initial_ = SOME (r)))) then r;
730
731
case (SOME (DAE . VAR_ATTR_STRING (initial_ = SOME (r)))) then r;
731
- // ppriv- ??? should be here: case (SOME(DAE.VAR_ATTR_ENUMERATION(start = SOME(r)))) then r;
732
+ case (SOME (DAE . VAR_ATTR_ENUMERATION (start = SOME (r)))) then r;
732
733
case (_) then DAE . RCONST (0 . 0 );
733
734
end matchcontinue;
734
735
end getStartAttr;
@@ -744,7 +745,7 @@ algorithm start:= matchcontinue (inVariableAttributesOption)
744
745
case (SOME (DAE . VAR_ATTR_INT (initial_ = SOME (r)))) then r;
745
746
case (SOME (DAE . VAR_ATTR_BOOL (initial_ = SOME (r)))) then r;
746
747
case (SOME (DAE . VAR_ATTR_STRING (initial_ = SOME (r)))) then r;
747
- // ppriv- ??? should be here: case (SOME(DAE.VAR_ATTR_ENUMERATION(start = SOME(r)))) then r;
748
+ case (SOME (DAE . VAR_ATTR_ENUMERATION (start = SOME (r)))) then r;
748
749
end matchcontinue;
749
750
end getStartAttrFail;
750
751
You can’t perform that action at this time.
0 commit comments