@@ -3731,12 +3731,12 @@ public function isExpandableConnectorType
37313731 input DAE . Type ty;
37323732 output Boolean isExpandable;
37333733algorithm
3734- isExpandable := matchcontinue (ty)
3734+ isExpandable := match (ty)
37353735 case (DAE . T_COMPLEX (complexClassType = ClassInf . CONNECTOR (_,true ))) then true ;
37363736 // TODO! check if subtype is needed here
37373737 case (DAE . T_SUBTYPE_BASIC (complexClassType = ClassInf . CONNECTOR (_,true ))) then true ;
37383738 case (_) then false ;
3739- end matchcontinue ;
3739+ end match ;
37403740end isExpandableConnectorType;
37413741
37423742protected function getStateFromType
@@ -3746,15 +3746,15 @@ protected function getStateFromType
37463746 input DAE . Type ty;
37473747 output ClassInf . State outState;
37483748algorithm
3749- outState := matchcontinue (ty)
3749+ outState := match (ty)
37503750 local
37513751 ClassInf . State state;
37523752 case (DAE . T_COMPLEX (complexClassType = state)) then state;
37533753 // TODO! check if subtype is needed here
37543754 case (DAE . T_SUBTYPE_BASIC (complexClassType = state)) then state;
37553755 // adpo: TODO! FIXME! add a debug print here!
37563756 case (_) then fail();
3757- end matchcontinue ;
3757+ end match ;
37583758end getStateFromType;
37593759
37603760protected function isConnectorType
@@ -3763,12 +3763,12 @@ protected function isConnectorType
37633763 input DAE . Type ty;
37643764 output Boolean isConnector;
37653765algorithm
3766- isConnector := matchcontinue (ty)
3766+ isConnector := match (ty)
37673767 case (DAE . T_COMPLEX (complexClassType = ClassInf . CONNECTOR (_,false ))) then true ;
37683768 // TODO! check if subtype is needed here
37693769 case (DAE . T_SUBTYPE_BASIC (complexClassType = ClassInf . CONNECTOR (_,false ))) then true ;
37703770 case (_) then false ;
3771- end matchcontinue ;
3771+ end match ;
37723772end isConnectorType;
37733773
37743774protected function flipDirection
0 commit comments