mirror of
https://github.com/tc39/test262.git
synced 2025-08-28 13:28:38 +02:00
59 lines
1017 B
JavaScript
59 lines
1017 B
JavaScript
// Copyright 2009 the Sputnik authors. All rights reserved.
|
|
// This code is governed by the BSD license found in the LICENSE file.
|
|
|
|
/**
|
|
* "try" with "catch" or "finally" statement within/without an "do while" statement
|
|
*
|
|
* @path ch12/12.14/S12.14_A9_T4.js
|
|
* @description "try" statement within a loop, the statement contains "continue" and "break" statements
|
|
*/
|
|
|
|
// CHECK#1
|
|
var c1=0,fin=0;
|
|
do{
|
|
try{
|
|
c1+=1;
|
|
break;
|
|
}
|
|
catch(er1){}
|
|
finally{
|
|
fin=1;
|
|
continue;
|
|
}
|
|
fin=-1;
|
|
c1+=2;
|
|
}
|
|
while(c1<2);
|
|
if(fin!==1){
|
|
$ERROR('#1.1: "finally" block must be evaluated');
|
|
}
|
|
if(c1!==2){
|
|
$ERROR('#1.2: "try{break} catch finally{continue}" must work correctly');
|
|
}
|
|
|
|
// CHECK#2
|
|
var c2=0,fin2=0;
|
|
do{
|
|
try{
|
|
throw "ex1";
|
|
}
|
|
catch(er1){
|
|
c2+=1;
|
|
break;
|
|
}
|
|
finally{
|
|
fin2=1;
|
|
continue;
|
|
}
|
|
c2+=2;
|
|
fin2=-1;
|
|
}
|
|
while(c2<2);
|
|
if(fin2!==1){
|
|
$ERROR('#2.1: "finally" block must be evaluated');
|
|
}
|
|
if(c2!==2){
|
|
$ERROR('#2.2: "try catch{break} finally{continue}" must work correctly');
|
|
}
|
|
|