mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			623 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			623 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright (C) 2018 Rick Waldron. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
/*---
 | 
						|
esid: sec-atomics.exchange
 | 
						|
description: >
 | 
						|
  Test Atomics.exchange on non-shared integer TypedArrays
 | 
						|
includes: [testBigIntTypedArray.js]
 | 
						|
features: [ArrayBuffer, arrow-function, Atomics, BigInt, TypedArray]
 | 
						|
---*/
 | 
						|
var buffer = new ArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 2);
 | 
						|
 | 
						|
testWithBigIntTypedArrayConstructors(function(TA) {
 | 
						|
  assert.throws(TypeError, function() {
 | 
						|
    Atomics.exchange(new TA(buffer), 0n, 0n);
 | 
						|
  }, '`Atomics.exchange(new TA(buffer), 0n, 0n)` throws TypeError');
 | 
						|
}); |