tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

iter-arg-is-string-resolve.js (948B)


      1 // |reftest| async
      2 // Copyright (C) 2019 Leo Balter. All rights reserved.
      3 // This code is governed by the BSD license found in the LICENSE file.
      4 
      5 /*---
      6 esid: sec-promise.allsettled
      7 description: >
      8  Resolve when argument is a string
      9 info: |
     10  Promise.allSettled ( iterable )
     11 
     12  ...
     13  4. Let iteratorRecord be GetIterator(iterable).
     14  5. IfAbruptRejectPromise(iteratorRecord, promiseCapability).
     15  ...
     16 
     17  #sec-getiterator
     18  GetIterator ( obj [ , hint [ , method ] ] )
     19 
     20  ...
     21  Let iterator be ? Call(method, obj).
     22  If Type(iterator) is not Object, throw a TypeError exception.
     23  ...
     24 features: [Promise.allSettled, Symbol.iterator]
     25 flags: [async]
     26 ---*/
     27 
     28 try {
     29  Promise.allSettled('').then(function(v) {
     30    assert.sameValue(v.length, 0);
     31  }, function() {
     32    $DONE('The promise should be resolved, but was rejected');
     33  }).then($DONE, $DONE);
     34 } catch (error) {
     35  $DONE(`The promise should be resolved, but threw an exception: ${error.message}`);
     36 }