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
thrownewPiccodeException(file, line, column,"Attempt to index array value with non numeric index: " + rhs + " which evaluates to " + execute + " is used as an index");
159
+
thrownewPiccodeException(file, line, column,"Attempt to index array value with non numeric index: " + rhs + " which evaluates to " + execute + " is used as an index");
148
160
}
149
161
150
162
intindex = (int) ((double) execute.raw());
151
163
if (index < 0 || index >= arr.length) {
152
-
thrownewPiccodeException(file, line, column,"Array index out of bounds: "+ lhs + " evaluates to an array with size" + arr.length + " which is indexed with " + execute);
164
+
thrownewPiccodeException(file, line, column,"Array index out of bounds: " +lhs + " evaluates to an array with size" + arr.length + " which is indexed with " + execute);
thrownewPiccodeException(file, line, column,"Attempt to index a tuple value with non numeric index: " + rhs + " which evaluates to " + execute + " is used as an index");
172
+
thrownewPiccodeException(file, line, column,"Attempt to index a tuple value with non numeric index: " + rhs + " which evaluates to " + execute + " is used as an index");
160
173
}
161
174
162
175
intindex = (int) ((double) execute.raw());
163
176
if (index < 0 || index >= arr.length) {
164
-
thrownewPiccodeException(file, line, column,"Array index out of bounds: "+ lhs + " evaluates to a tuple with size" + arr.length + " which is indexed with " + execute);
177
+
thrownewPiccodeException(file, line, column,"Array index out of bounds: " +lhs + " evaluates to a tuple with size" + arr.length + " which is indexed with " + execute);
0 commit comments