summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/NativeErrors/AggregateError/order-of-args-evaluation.js
blob: 18a8b8a0e0cfbc2da0df164a914b76c5f662f680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
// Copyright (C) 2020 Rick Waldron. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
esid: sec-aggregate-error
description: >
  Process arguments in superclass-then-subclass order
info: |
  AggregateError ( errors, message )

  TODO: get updated prose

features: [AggregateError, Symbol.iterator]
includes: [promiseHelper.js]
---*/

let sequence = [];
const message = {
  toString() {
    sequence.push(1);
    return '';
  }
};
const errors = {
  [Symbol.iterator]() {
    sequence.push(2);
    return {
      next() {
        sequence.push(3);
        return {
          done: true
        };
      }
    };
  }
};

new AggregateError(errors, message);

assert.sameValue(sequence.length, 3);
checkSequence(sequence);

reportCompare(0, 0);