From d34ba43d59a6c248e3e970321ea2f51b1125b8f1 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Wed, 4 Jan 2023 06:40:31 +0300 Subject: [PATCH] cleanup... Signed-off-by: Alex A. Naanou --- Promise.js | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/Promise.js b/Promise.js index 9d5842a..a2cadf4 100644 --- a/Promise.js +++ b/Promise.js @@ -836,25 +836,6 @@ object.Constructor('IterablePromise', Promise, { // NOTE: that here a promise will block handling of later promises even // if they are resolved before it. // -// XXX BUG (FIXED): -// await Promise.seqiter([ -// 1, -// Promise.resolve(2), -// Promise.resolve(3), -// Promise.resolve(4), -// Promise.resolve(5), -// ]) -// -> [ 1, 2, [3], [[4]], [[[5]]] ] -// looks like we need to flatten things... -// XXX FIXED but need more testing... -// XXX BUG (FIXED): -// await Promise.seqiter([ -// [1], -// Promise.resolve([1]), -// Promise.resolve([1]) -// ], -// e => [e]) -// -> [ [ 1 ], 1, [ 1 ] ] // XXX check if this behaves correctly (call order) on concatenation and // other methods... // XXX not sure if this is a viable strategy....