@@ -523,7 +523,6 @@ algorithm
523523 local
524524 Type elt_tp;
525525 list< DAE . Dimension > dims;
526- DAE . TypeSource ts;
527526
528527 case (DAE . T_ARRAY (elt_tp,dims),_)
529528 equation
@@ -1041,7 +1040,6 @@ algorithm
10411040 Type tp,t;
10421041 DAE . Dimension d;
10431042 DAE . Dimensions ds;
1044- DAE . TypeSource ts;
10451043
10461044 case (DAE . T_ARRAY (ty = tp,dims = {_}))
10471045 then tp;
@@ -1134,7 +1132,6 @@ algorithm
11341132 Type ty_1,ty;
11351133 DAE . Dimensions dims;
11361134 DAE . Dimension dim;
1137- DAE . TypeSource ts;
11381135
11391136 case (DAE . T_ARRAY (ty,dims),dim)
11401137 equation
@@ -1160,7 +1157,6 @@ algorithm
11601157 Type ty;
11611158 DAE . Dimensions dims;
11621159 DAE . Dimension dim;
1163- DAE . TypeSource ts;
11641160
11651161 case (DAE . T_ARRAY (ty,dims),dim) then DAE . T_ARRAY (ty,dim::dims);
11661162
@@ -1178,7 +1174,6 @@ algorithm
11781174 local
11791175 Type ty;
11801176 DAE . Dimensions dims;
1181- DAE . TypeSource ts;
11821177
11831178 case (_, {}) then inType;
11841179
@@ -1443,7 +1438,6 @@ algorithm
14431438 list< DAE . Exp > expl;
14441439 Integer dim;
14451440 DAE . Dimensions dims;
1446- DAE . TypeSource ts;
14471441
14481442 case (_, DAE . ARRAY (
14491443 DAE . T_ARRAY (ty = ty, dims = DAE . DIM_INTEGER (dim) :: dims),
@@ -1475,7 +1469,6 @@ algorithm
14751469 local
14761470 DAE . Type ty;
14771471 DAE . Dimensions rest_dims;
1478- DAE . TypeSource ts;
14791472
14801473 case (DAE . T_ARRAY (ty = ty, dims = _ :: rest_dims), _)
14811474 then DAE . T_ARRAY (ty, dimension :: rest_dims);
@@ -2334,7 +2327,6 @@ algorithm
23342327 local
23352328 Type ty,ty1;
23362329 DAE . Dimensions dims;
2337- DAE . TypeSource source;
23382330 case DAE . T_ARRAY (ty= ty,dims= dims)
23392331 equation
23402332 _ = typeofRelation(ty);
@@ -4833,7 +4825,6 @@ algorithm
48334825 DAE . Type et;
48344826 DAE . Dimension dim1, dim2;
48354827 DAE . Dimensions dims1, dims2;
4836- DAE . TypeSource ts;
48374828
48384829 case (DAE . T_ARRAY (ty = et, dims = dim1 :: dims1), DAE . T_ARRAY (dims = dim2 :: _))
48394830 equation
@@ -6033,7 +6024,6 @@ algorithm
60336024 local
60346025 DAE . Type ty, new_ty;
60356026 list< DAE . Dimension > dims, new_dims;
6036- DAE . TypeSource src;
60376027 ArgT arg;
60386028 Boolean changed;
60396029 ClassInf . State state;
@@ -6047,10 +6037,10 @@ algorithm
60476037 then
60486038 (ty, arg);
60496039
6050- case DAE . T_SUBTYPE_BASIC (state, vars, ty, ec, src )
6040+ case DAE . T_SUBTYPE_BASIC (state, vars, ty, ec)
60516041 equation
60526042 (new_ty, arg) = traverseExpTypeDims(ty, inFunc, inArg);
6053- ty = if referenceEq(new_ty, ty) then inType else DAE . T_SUBTYPE_BASIC (state, vars, ty, ec, src );
6043+ ty = if referenceEq(new_ty, ty) then inType else DAE . T_SUBTYPE_BASIC (state, vars, ty, ec);
60546044 then
60556045 (ty, arg);
60566046
0 commit comments