2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
2014-07-17 19:49:35 +02:00
|
|
|
|
2014-07-22 01:09:02 +02:00
|
|
|
/*---
|
|
|
|
info: Promise.all is callable
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: 25.4.4.1_A1.1_T1
|
2014-07-22 01:09:02 +02:00
|
|
|
author: Sam Mikes
|
2014-10-23 19:58:31 +02:00
|
|
|
description: Promise.all is callable
|
2014-07-22 01:09:02 +02:00
|
|
|
---*/
|
2014-07-17 19:49:35 +02:00
|
|
|
|
2014-10-23 19:58:31 +02:00
|
|
|
if ((typeof Promise.all) !== "function") {
|
|
|
|
$ERROR('Expected Promise.all to be a function');
|
2014-07-17 19:49:35 +02:00
|
|
|
}
|