2014-10-23 19:58:31 +02:00
|
|
|
// Copyright 2014 Cubane Canada, Inc. All rights reserved.
|
|
|
|
// See LICENSE for details.
|
|
|
|
|
|
|
|
/*---
|
2018-01-05 18:26:51 +01:00
|
|
|
info: |
|
2014-10-23 19:58:31 +02:00
|
|
|
Promise is the Promise property of the global object
|
2015-02-10 22:01:39 +01:00
|
|
|
es6id: S25.4.3.1_A1.1_T1
|
2014-10-23 19:58:31 +02:00
|
|
|
author: Sam Mikes
|
|
|
|
description: Promise === global.Promise
|
|
|
|
---*/
|
|
|
|
|
2016-04-22 19:07:00 +02:00
|
|
|
var global = this;
|
2014-10-23 19:58:31 +02:00
|
|
|
|
|
|
|
if (Promise !== global.Promise) {
|
2018-02-09 18:09:47 +01:00
|
|
|
$ERROR("Expected Promise === global.Promise.");
|
2014-10-23 19:58:31 +02:00
|
|
|
}
|