S12.10_A1.4_T4.js (3620B)
1 // Copyright 2009 the Sputnik authors. All rights reserved. 2 // This code is governed by the BSD license found in the LICENSE file. 3 4 /*--- 5 info: | 6 The with statement adds a computed object to the front of the 7 scope chain of the current execution context 8 es5id: 12.10_A1.4_T4 9 description: > 10 Using "with" statement within iteration statement, leading to 11 completion by break 12 flags: [noStrict] 13 ---*/ 14 15 this.p1 = 1; 16 this.p2 = 2; 17 this.p3 = 3; 18 var result = "result"; 19 var myObj = {p1: 'a', 20 p2: 'b', 21 p3: 'c', 22 value: 'myObj_value', 23 valueOf : function(){return 'obj_valueOf';}, 24 parseInt : function(){return 'obj_parseInt';}, 25 NaN : 'obj_NaN', 26 Infinity : 'obj_Infinity', 27 eval : function(){return 'obj_eval';}, 28 parseFloat : function(){return 'obj_parseFloat';}, 29 isNaN : function(){return 'obj_isNaN';}, 30 isFinite : function(){return 'obj_isFinite';} 31 } 32 var del; 33 var st_p1 = "p1"; 34 var st_p2 = "p2"; 35 var st_p3 = "p3"; 36 var st_parseInt = "parseInt"; 37 var st_NaN = "NaN"; 38 var st_Infinity = "Infinity"; 39 var st_eval = "eval"; 40 var st_parseFloat = "parseFloat"; 41 var st_isNaN = "isNaN"; 42 var st_isFinite = "isFinite"; 43 44 do{ 45 with(myObj){ 46 st_p1 = p1; 47 st_p2 = p2; 48 st_p3 = p3; 49 st_parseInt = parseInt; 50 st_NaN = NaN; 51 st_Infinity = Infinity; 52 st_eval = eval; 53 st_parseFloat = parseFloat; 54 st_isNaN = isNaN; 55 st_isFinite = isFinite; 56 p1 = 'x1'; 57 this.p2 = 'x2'; 58 del = delete p3; 59 var p4 = 'x4'; 60 p5 = 'x5'; 61 var value = 'value'; 62 break; 63 } 64 } 65 while(false); 66 67 if(!(p1 === 1)){ 68 throw new Test262Error('#1: p1 === 1. Actual: p1 ==='+ p1 ); 69 } 70 71 if(!(p2 === "x2")){ 72 throw new Test262Error('#2: p2 === "x2". Actual: p2 ==='+ p2 ); 73 } 74 75 if(!(p3 === 3)){ 76 throw new Test262Error('#3: p3 === 3. Actual: p3 ==='+ p3 ); 77 } 78 79 if(!(p4 === "x4")){ 80 throw new Test262Error('#4: p4 === "x4". Actual: p4 ==='+ p4 ); 81 } 82 83 if(!(p5 === "x5")){ 84 throw new Test262Error('#5: p5 === "x5". Actual: p5 ==='+ p5 ); 85 } 86 87 if(!(myObj.p1 === "x1")){ 88 throw new Test262Error('#6: myObj.p1 === "x1". Actual: myObj.p1 ==='+ myObj.p1 ); 89 } 90 91 if(!(myObj.p2 === "b")){ 92 throw new Test262Error('#7: myObj.p2 === "b". Actual: myObj.p2 ==='+ myObj.p2 ); 93 } 94 95 if(!(myObj.p3 === undefined)){ 96 throw new Test262Error('#8: myObj.p3 === undefined. Actual: myObj.p3 ==='+ myObj.p3 ); 97 } 98 99 if(!(myObj.p4 === undefined)){ 100 throw new Test262Error('#9: myObj.p4 === undefined. Actual: myObj.p4 ==='+ myObj.p4 ); 101 } 102 103 if(!(myObj.p5 === undefined)){ 104 throw new Test262Error('#10: myObj.p5 === undefined. Actual: myObj.p5 ==='+ myObj.p5 ); 105 } 106 107 if(!(st_parseInt !== parseInt)){ 108 throw new Test262Error('#11: myObj.parseInt !== parseInt'); 109 } 110 111 if(!(st_NaN === "obj_NaN")){ 112 throw new Test262Error('#12: myObj.NaN !== NaN'); 113 } 114 115 if(!(st_Infinity !== Infinity)){ 116 throw new Test262Error('#13: myObj.Infinity !== Infinity'); 117 } 118 119 if(!(st_eval !== eval)){ 120 throw new Test262Error('#14: myObj.eval !== eval'); 121 } 122 123 if(!(st_parseFloat !== parseFloat)){ 124 throw new Test262Error('#15: myObj.parseFloat !== parseFloat'); 125 } 126 127 if(!(st_isNaN !== isNaN)){ 128 throw new Test262Error('#16: myObj.isNaN !== isNaN'); 129 } 130 131 if(!(st_isFinite !== isFinite)){ 132 throw new Test262Error('#17: myObj.isFinite !== isFinite'); 133 } 134 135 if(!(value === undefined)){ 136 throw new Test262Error('#18: value === undefined. Actual: value ==='+ value ); 137 } 138 139 if(!(myObj.value === "value")){ 140 throw new Test262Error('#19: myObj.value === "value". Actual: myObj.value ==='+ myObj.value ); 141 } 142 143 reportCompare(0, 0);