mirror of
				https://github.com/RGBCube/serenity
				synced 2025-10-31 01:52:43 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
	
		
			189 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| try {
 | |
|     console.log("you should see me");
 | |
|     foo();
 | |
|     console.log("not me");
 | |
| } catch (e) {
 | |
|     console.log("catch");
 | |
|     console.log(e.name);
 | |
| } finally {
 | |
|     console.log("finally");
 | |
| }
 | 
