mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2015 André Bargull. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
esid: sec-getcapabilitiesexecutor-functions
 | 
						|
description: GetCapabilitiesExecutor function is not constructor
 | 
						|
info: |
 | 
						|
  17 ECMAScript Standard Built-in Objects:
 | 
						|
    Built-in function objects that are not identified as constructors do not
 | 
						|
    implement the [[Construct]] internal method unless otherwise specified
 | 
						|
    in the description of a particular function.
 | 
						|
includes: [isConstructor.js]
 | 
						|
features: [Reflect.construct, arrow-function]
 | 
						|
---*/
 | 
						|
 | 
						|
var executorFunction;
 | 
						|
 | 
						|
function NotPromise(executor) {
 | 
						|
  executorFunction = executor;
 | 
						|
  executor(function() {}, function() {});
 | 
						|
}
 | 
						|
Promise.resolve.call(NotPromise);
 | 
						|
 | 
						|
assert.sameValue(
 | 
						|
  Object.prototype.hasOwnProperty.call(executorFunction, "prototype"),
 | 
						|
  false,
 | 
						|
  'Object.prototype.hasOwnProperty.call(executorFunction, "prototype") must return false'
 | 
						|
);
 | 
						|
assert.sameValue(isConstructor(executorFunction), false, 'isConstructor(executorFunction) must return false');
 | 
						|
 | 
						|
assert.throws(TypeError, () => {
 | 
						|
  new executorFunction();
 | 
						|
}, '`new executorFunction()` throws TypeError');
 | 
						|
 |