OLD | NEW |
1 // Copyright 2009 the V8 project authors. All rights reserved. | 1 // Copyright 2009 the V8 project authors. All rights reserved. |
2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
4 // met: | 4 // met: |
5 // | 5 // |
6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
11 // with the distribution. | 11 // with the distribution. |
12 // * Neither the name of Google Inc. nor the names of its | 12 // * Neither the name of Google Inc. nor the names of its |
13 // contributors may be used to endorse or promote products derived | 13 // contributors may be used to endorse or promote products derived |
14 // from this software without specific prior written permission. | 14 // from this software without specific prior written permission. |
15 // | 15 // |
16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | 16 // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS |
17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | 17 // "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT |
18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | 18 // LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR |
19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | 19 // A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT |
20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 20 // OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 21 // SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 22 // LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 // Flags: --legacy-const | |
29 | |
30 // Make sure that eval can introduce a local variable called __proto__. | 28 // Make sure that eval can introduce a local variable called __proto__. |
31 // See http://code.google.com/p/v8/issues/detail?id=186 | 29 // See http://code.google.com/p/v8/issues/detail?id=186 |
32 | 30 |
33 var setterCalled = false; | 31 var setterCalled = false; |
34 | 32 |
35 var o = {}; | 33 var o = {}; |
36 o.__defineSetter__("x", function() { setterCalled = true; }); | 34 o.__defineSetter__("x", function() { setterCalled = true; }); |
37 | 35 |
38 function runTest(test) { | 36 function runTest(test) { |
39 setterCalled = false; | 37 setterCalled = false; |
40 test(); | 38 test(); |
41 } | 39 } |
42 | 40 |
43 function testLocal() { | 41 function testLocal() { |
44 // Add property called __proto__ to the extension object. | 42 // Add property called __proto__ to the extension object. |
45 eval("var __proto__ = o"); | 43 eval("var __proto__ = o"); |
46 // Check that the extension object's prototype did not change. | 44 // Check that the extension object's prototype did not change. |
47 eval("var x = 27"); | 45 eval("var x = 27"); |
48 assertFalse(setterCalled, "prototype of extension object changed"); | 46 assertFalse(setterCalled, "prototype of extension object changed"); |
49 assertEquals(o, eval("__proto__")); | 47 assertEquals(o, eval("__proto__")); |
50 } | 48 } |
51 | 49 |
52 function testConstLocal() { | |
53 // Add const property called __proto__ to the extension object. | |
54 eval("const __proto__ = o"); | |
55 // Check that the extension object's prototype did not change. | |
56 eval("var x = 27"); | |
57 assertFalse(setterCalled, "prototype of extension object changed"); | |
58 assertEquals(o, eval("__proto__")); | |
59 } | |
60 | |
61 function testGlobal() { | 50 function testGlobal() { |
62 // Assign to the global __proto__ property. | 51 // Assign to the global __proto__ property. |
63 eval("__proto__ = o"); | 52 eval("__proto__ = o"); |
64 // Check that the prototype of the global object changed. | 53 // Check that the prototype of the global object changed. |
65 eval("x = 27"); | 54 eval("x = 27"); |
66 assertTrue(setterCalled, "prototype of global object did not change"); | 55 assertTrue(setterCalled, "prototype of global object did not change"); |
67 setterCalled = false; | 56 setterCalled = false; |
68 assertEquals(o, eval("__proto__")); | 57 assertEquals(o, eval("__proto__")); |
69 } | 58 } |
70 | 59 |
71 runTest(testLocal); | 60 runTest(testLocal); |
72 runTest(testConstLocal); | |
73 runTest(testGlobal); | 61 runTest(testGlobal); |
OLD | NEW |