mirror of https://github.com/tc39/test262.git
21 lines
529 B
JavaScript
21 lines
529 B
JavaScript
// Copyright (C) 2015 the V8 project authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/*---
|
|
description: >
|
|
`Promise.all` invoked on a non-constructor value
|
|
es6id: 25.4.4.1
|
|
info: |
|
|
[...]
|
|
6. Let promiseCapability be NewPromiseCapability(C).
|
|
7. ReturnIfAbrupt(promiseCapability).
|
|
|
|
25.4.1.5 NewPromiseCapability ( C )
|
|
|
|
1. If IsConstructor(C) is false, throw a TypeError exception.
|
|
---*/
|
|
|
|
assert.throws(TypeError, function() {
|
|
Promise.all.call(eval);
|
|
});
|