mirror of
				https://github.com/LadybirdBrowser/ladybird.git
				synced 2025-10-31 05:10:57 +00:00 
			
		
		
		
	
		
			
	
	
		
			15 lines
		
	
	
	
		
			215 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
	
		
			215 B
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
|   | function assert(x) { if (!x) throw 1; } | ||
|  | 
 | ||
|  | try { | ||
|  |     var j = 0; | ||
|  |     for (var i = 0; i < 9; ++i) { | ||
|  |         if (i == 3) | ||
|  |             continue; | ||
|  |         ++j; | ||
|  |     } | ||
|  |     assert(j == 8); | ||
|  |     console.log("PASS"); | ||
|  | } catch { | ||
|  | } | ||
|  | 
 |