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.
1 parent 42015be commit 7ea662fCopy full SHA for 7ea662f
tests/docstrings_examples/DocTest.res
@@ -374,6 +374,8 @@ let main = async () => {
374
// Await the next iterator value
375
let {value, done} = await asyncIterator->AsyncIterator.next
376
377
+ Console.log2(value, Array.length(chuncks))
378
+
379
// Exit the while loop if the iterator says it's done
380
break := done
381
tests/docstrings_examples/DocTest.res.mjs
@@ -381,6 +381,7 @@ async function main() {
while (!$$break) {
382
let match = await asyncIterator.next();
383
let value = match.value;
384
+ console.log(value, chuncks.length);
385
$$break = match.done;
386
if (value !== undefined) {
387
let c = chuncks[value];
0 commit comments