We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 037bf3f + 838cbd7 commit 178f7e2Copy full SHA for 178f7e2
lkql_jit/language/src/main/java/com/adacore/lkql_jit/built_ins/BuiltInFunctions.java
@@ -381,7 +381,7 @@ public static final class InternalRepeatingNode extends Node implements Repeatin
381
382
private long times;
383
384
- private int done = 0;
+ private long done;
385
386
InternalRepeatingNode(
387
LKQLFunction function,
@@ -391,6 +391,7 @@ public static final class InternalRepeatingNode extends Node implements Repeatin
391
this.function = function;
392
this.functionLibrary = functionLibrary;
393
this.times = times;
394
+ this.done = 0;
395
}
396
397
public boolean executeRepeating(VirtualFrame frame) {
0 commit comments