blob: 5d5800ee3730d3c8a3e3487e3c57afbf8ec80817 [file] [log] [blame]
Steve Block1e0659c2011-05-24 12:43:12 +01001// Copyright 2011 the V8 project authors. All rights reserved.
2// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
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.
27
Ben Murdoche0cee9b2011-05-25 10:26:03 +010028var setter_value = 0;
Steve Block1e0659c2011-05-24 12:43:12 +010029
Ben Murdochb8a8cc12014-11-26 15:28:44 +000030this.__defineSetter__("a", function(v) { setter_value = v; });
Ben Murdoche0cee9b2011-05-25 10:26:03 +010031eval("var a = 1");
32assertEquals(1, setter_value);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000033assertFalse("value" in Object.getOwnPropertyDescriptor(this, "a"));
Steve Block1e0659c2011-05-24 12:43:12 +010034
Ben Murdoche0cee9b2011-05-25 10:26:03 +010035eval("with({}) { eval('var a = 2') }");
Ben Murdochb8a8cc12014-11-26 15:28:44 +000036assertTrue("get" in Object.getOwnPropertyDescriptor(this, "a"));
37assertFalse("value" in Object.getOwnPropertyDescriptor(this, "a"));
Ben Murdoche0cee9b2011-05-25 10:26:03 +010038assertEquals(2, setter_value);
Ben Murdoche0cee9b2011-05-25 10:26:03 +010039
40// Function declarations are treated specially to match Safari. We do
41// not call setters for them.
Ben Murdochb8a8cc12014-11-26 15:28:44 +000042this.__defineSetter__("a", function(v) { assertUnreachable(); });
Ben Murdoche0cee9b2011-05-25 10:26:03 +010043eval("function a() {}");
Ben Murdochb8a8cc12014-11-26 15:28:44 +000044assertTrue("value" in Object.getOwnPropertyDescriptor(this, "a"));
Ben Murdoche0cee9b2011-05-25 10:26:03 +010045
Ben Murdochb8a8cc12014-11-26 15:28:44 +000046this.__defineSetter__("b", function(v) { setter_value = v; });
Steve Block1e0659c2011-05-24 12:43:12 +010047try {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000048 eval("const b = 3");
49} catch(e) { }
50assertEquals(2, setter_value);
Ben Murdoch3fb3ca82011-12-02 17:19:32 +000051
Ben Murdoche0cee9b2011-05-25 10:26:03 +010052try {
53 eval("with({}) { eval('const b = 23') }");
Ben Murdoche0cee9b2011-05-25 10:26:03 +010054} catch(e) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +000055 assertInstanceof(e, TypeError);
Ben Murdoche0cee9b2011-05-25 10:26:03 +010056}
57
Ben Murdochb8a8cc12014-11-26 15:28:44 +000058this.__defineSetter__("c", function(v) { throw 42; });
Ben Murdoche0cee9b2011-05-25 10:26:03 +010059try {
60 eval("var c = 1");
Ben Murdochb8a8cc12014-11-26 15:28:44 +000061 assertUnreachable();
Ben Murdoche0cee9b2011-05-25 10:26:03 +010062} catch(e) {
63 assertEquals(42, e);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000064 assertFalse("value" in Object.getOwnPropertyDescriptor(this, "c"));
Ben Murdoche0cee9b2011-05-25 10:26:03 +010065}
Ben Murdochb8a8cc12014-11-26 15:28:44 +000066
67
68
69
70__proto__.__defineSetter__("aa", function(v) { assertUnreachable(); });
71eval("var aa = 1");
72assertTrue(this.hasOwnProperty("aa"));
73
74__proto__.__defineSetter__("bb", function(v) { assertUnreachable(); });
75eval("with({}) { eval('var bb = 2') }");
76assertTrue(this.hasOwnProperty("bb"));
77
78// Function declarations are treated specially to match Safari. We do
79// not call setters for them.
80__proto__.__defineSetter__("cc", function(v) { assertUnreachable(); });
81eval("function cc() {}");
82assertTrue(this.hasOwnProperty("cc"));
83
84__proto__.__defineSetter__("dd", function(v) { assertUnreachable(); });
85try {
86 eval("const dd = 23");
87} catch(e) {
88 assertUnreachable();
89}
90
91try {
92 eval("with({}) { eval('const dd = 23') }");
93} catch(e) {
94 assertInstanceof(e, TypeError);
95}