mirror of
				https://github.com/tc39/test262.git
				synced 2025-11-04 05:33:50 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			584 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			584 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
// Copyright 2017 Caitlin Potter. All rights reserved.
 | 
						|
// This code is governed by the BSD license found in the LICENSE file.
 | 
						|
 | 
						|
/*---
 | 
						|
author: Caitlin Potter <caitp@igalia.com>
 | 
						|
esid: pending
 | 
						|
description: >
 | 
						|
  Implementations must defer rejecting an async function's Promise until after
 | 
						|
  all finally blocks have been evaluated.
 | 
						|
flags: [async]
 | 
						|
---*/
 | 
						|
 | 
						|
var f = async function() {
 | 
						|
  try {
 | 
						|
    throw "early-throw";
 | 
						|
  } finally {
 | 
						|
    throw "override";
 | 
						|
  }
 | 
						|
};
 | 
						|
 | 
						|
f().then($DONE, function(value) {
 | 
						|
  assert.sameValue(value, "override", "Exception thrown in finally block");
 | 
						|
}).then($DONE, $DONE);
 |