mirror of
				https://github.com/tc39/test262.git
				synced 2025-10-31 19:53:50 +01:00 
			
		
		
		
	sourceRevisionAtLastExport: 33f2fb0e53d135f0ee17cfccd9d993eb2a6f47de targetRevisionAtLastExport: 31340cbd9add103f586d501b0c3354b7b182abc0
		
			
				
	
	
		
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			50 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Copyright 2018 the V8 project authors. All rights reserved.
 | |
| // Use of this source code is governed by a BSD-style license that can be
 | |
| // found in the LICENSE file.
 | |
| 
 | |
| // Flags: --allow-natives-syntax --expose-gc --turbo-inline-array-builtins
 | |
| // Flags: --opt --no-always-opt
 | |
| 
 | |
| // Make sure we gracefully handle the case of an empty array in
 | |
| // optimized code.
 | |
| (function() {
 | |
|   var nothingThere = function(only_holes) {
 | |
|     var a = [1,2,,3];  // holey smi array.
 | |
|     if (only_holes) {
 | |
|       a = [,,,];  // also a holey smi array.
 | |
|     }
 | |
|     return a.reduceRight((r,v,i,o)=>r+v);
 | |
|   }
 | |
|   nothingThere();
 | |
|   nothingThere();
 | |
|   %OptimizeFunctionOnNextCall(nothingThere);
 | |
|   assertThrows(() => nothingThere(true));
 | |
| })();
 | |
| 
 | |
| // An error generated inside the callback includes reduce in it's
 | |
| // stack trace.
 | |
| (function() {
 | |
|   var re = /Array\.reduceRight/;
 | |
|   var alwaysThrows = function() {
 | |
|     var b = [,,,];
 | |
|     var result = 0;
 | |
|     var callback = function(r,v,i,o) {
 | |
|       return r + v;
 | |
|     };
 | |
|     b.reduceRight(callback);
 | |
|   }
 | |
|   try {
 | |
|     alwaysThrows();
 | |
|   } catch (e) {
 | |
|     assertTrue(re.exec(e.stack) !== null);
 | |
|   }
 | |
|   try { alwaysThrows(); } catch (e) {}
 | |
|   try { alwaysThrows(); } catch (e) {}
 | |
|   %OptimizeFunctionOnNextCall(alwaysThrows);
 | |
|   try {
 | |
|     alwaysThrows();
 | |
|   } catch (e) {
 | |
|     assertTrue(re.exec(e.stack) !== null);
 | |
|   }
 | |
| })();
 |