AggregateError: update args order evaluation (#2647)

Fixes #2646
This commit is contained in:
Rick Waldron 2020-07-08 15:13:36 -04:00 committed by GitHub
parent bc433f1e1c
commit d3c693bdfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,41 @@
// 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);