|
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 * No matter how control leaves the embedded 'Statement', |
|
6 * the scope chain is always restored to its former state |
|
7 * |
|
8 * @path ch12/12.10/S12.10_A3.6_T1.js |
|
9 * @description Using "with" statement within another "with" statement, leading to normal completion |
|
10 * @noStrict |
|
11 */ |
|
12 |
|
13 this.p1 = 1; |
|
14 |
|
15 var result = "result"; |
|
16 |
|
17 var myObj = { |
|
18 p1: 'a', |
|
19 value: 'myObj_value', |
|
20 valueOf : function(){return 'obj_valueOf';} |
|
21 } |
|
22 |
|
23 var theirObj = { |
|
24 p1: true, |
|
25 value: 'theirObj_value', |
|
26 valueOf : function(){return 'thr_valueOf';} |
|
27 } |
|
28 |
|
29 with(myObj){ |
|
30 with(theirObj){ |
|
31 p1 = 'x1'; |
|
32 } |
|
33 } |
|
34 |
|
35 ////////////////////////////////////////////////////////////////////////////// |
|
36 //CHECK#1 |
|
37 if(p1 !== 1){ |
|
38 $ERROR('#1: p1 === 1. Actual: p1 ==='+ p1 ); |
|
39 } |
|
40 // |
|
41 ////////////////////////////////////////////////////////////////////////////// |
|
42 |
|
43 ////////////////////////////////////////////////////////////////////////////// |
|
44 //CHECK#2 |
|
45 if(myObj.p1 !== "a"){ |
|
46 $ERROR('#2: myObj.p1 === "a". Actual: myObj.p1 ==='+ myObj.p1 ); |
|
47 } |
|
48 // |
|
49 ////////////////////////////////////////////////////////////////////////////// |
|
50 |
|
51 ////////////////////////////////////////////////////////////////////////////// |
|
52 //CHECK#3 |
|
53 if(theirObj.p1 !== "x1"){ |
|
54 $ERROR('#3: theirObj.p1 === "x1". Actual: theirObj.p1 ==='+ theirObj.p1 ); |
|
55 } |
|
56 // |
|
57 ////////////////////////////////////////////////////////////////////////////// |
|
58 |
|
59 |
|
60 |