| // Copyright (C) 2015 André Bargull. All rights reserved. |
| // This code is governed by the BSD license found in the LICENSE file. |
| description: The [[Extensible]] slot of GetCapabilitiesExecutor functions |
| 17 ECMAScript Standard Built-in Objects: |
| Unless specified otherwise, the [[Extensible]] internal slot |
| of a built-in object initially has the value true. |
| function NotPromise(executor) { |
| executorFunction = executor; |
| executor(function(){}, function(){}); |
| Promise.resolve.call(NotPromise); |
| assert(Object.isExtensible(executorFunction)); |