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