%PDF- <> %âãÏÓ endobj 2 0 obj <> endobj 3 0 obj <>/ExtGState<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI] >>/Annots[ 28 0 R 29 0 R] /MediaBox[ 0 0 595.5 842.25] /Contents 4 0 R/Group<>/Tabs/S>> endobj ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<>endobj 2 0 obj<> endobj 2 0 obj<>endobj 2 0 obj<>es 3 0 R>> endobj 2 0 obj<> ox[ 0.000000 0.000000 609.600000 935.600000]/Fi endobj 3 0 obj<> endobj 7 1 obj<>/ProcSet[/PDF/Text/ImageB/ImageC/ImageI]>>/Subtype/Form>> stream
// Flags: --expose-internals 'use strict'; const common = require('../common'); const assert = require('assert'); const { PromisePrototypeThen, SafePromiseAll, SafePromiseAllSettled, SafePromiseAny, SafePromisePrototypeFinally, SafePromiseRace, } = require('internal/test/binding').primordials; Array.prototype[Symbol.iterator] = common.mustNotCall('%Array.prototype%[@@iterator]'); Promise.all = common.mustNotCall('%Promise%.all'); Promise.allSettled = common.mustNotCall('%Promise%.allSettled'); Promise.any = common.mustNotCall('%Promise%.any'); Promise.race = common.mustNotCall('%Promise%.race'); Promise.prototype.catch = common.mustNotCall('%Promise.prototype%.catch'); Promise.prototype.finally = common.mustNotCall('%Promise.prototype%.finally'); Promise.prototype.then = common.mustNotCall('%Promise.prototype%.then'); assertIsPromise(PromisePrototypeThen(test(), common.mustCall())); assertIsPromise(SafePromisePrototypeFinally(test(), common.mustCall())); assertIsPromise(SafePromiseAll([test()])); assertIsPromise(SafePromiseAllSettled([test()])); assertIsPromise(SafePromiseAny([test()])); assertIsPromise(SafePromiseRace([test()])); async function test() { const catchFn = common.mustCall(); const finallyFn = common.mustCall(); try { await Promise.reject(); } catch { catchFn(); } finally { finallyFn(); } } function assertIsPromise(promise) { // Make sure the returned promise is a genuine %Promise% object and not a // subclass instance. assert.strictEqual(Object.getPrototypeOf(promise), Promise.prototype); }