blob: ae7c5e03f02beff80cbed561ad4de2b7434a461f [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001// Copyright 2008 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 Murdochda12d292016-06-02 14:46:10 +010028// Flags: --allow-natives-syntax
Steve Blocka7e24c12009-10-30 11:49:00 +000029
Ben Murdochda12d292016-06-02 14:46:10 +010030// Make sure that we can introduce global variables that shadow even
31// READ_ONLY variables in the prototype chain.
32var NONE = 0;
33var READ_ONLY = 1;
Steve Blocka7e24c12009-10-30 11:49:00 +000034
35// Use DeclareGlobal...
Ben Murdochb8a8cc12014-11-26 15:28:44 +000036%AddNamedProperty(this.__proto__, "a", 1234, NONE);
Steve Blocka7e24c12009-10-30 11:49:00 +000037assertEquals(1234, a);
38eval("var a = 5678;");
39assertEquals(5678, a);
40
Ben Murdochb8a8cc12014-11-26 15:28:44 +000041%AddNamedProperty(this.__proto__, "b", 1234, NONE);
Steve Blocka7e24c12009-10-30 11:49:00 +000042assertEquals(1234, b);
Ben Murdochda12d292016-06-02 14:46:10 +010043eval("var b = 5678;");
Steve Blocka7e24c12009-10-30 11:49:00 +000044assertEquals(5678, b);
45
Ben Murdochb8a8cc12014-11-26 15:28:44 +000046%AddNamedProperty(this.__proto__, "c", 1234, READ_ONLY);
Steve Blocka7e24c12009-10-30 11:49:00 +000047assertEquals(1234, c);
48eval("var c = 5678;");
49assertEquals(5678, c);
50
Ben Murdochb8a8cc12014-11-26 15:28:44 +000051%AddNamedProperty(this.__proto__, "d", 1234, READ_ONLY);
Steve Blocka7e24c12009-10-30 11:49:00 +000052assertEquals(1234, d);
Ben Murdochda12d292016-06-02 14:46:10 +010053eval("var d = 5678;");
Steve Blocka7e24c12009-10-30 11:49:00 +000054assertEquals(5678, d);
55
56// Use DeclareContextSlot...
Ben Murdochb8a8cc12014-11-26 15:28:44 +000057%AddNamedProperty(this.__proto__, "x", 1234, NONE);
Steve Blocka7e24c12009-10-30 11:49:00 +000058assertEquals(1234, x);
59eval("with({}) { var x = 5678; }");
60assertEquals(5678, x);
61
Ben Murdochb8a8cc12014-11-26 15:28:44 +000062%AddNamedProperty(this.__proto__, "y", 1234, NONE);
Steve Blocka7e24c12009-10-30 11:49:00 +000063assertEquals(1234, y);
Ben Murdochda12d292016-06-02 14:46:10 +010064eval("with({}) { var y = 5678; }");
Steve Blocka7e24c12009-10-30 11:49:00 +000065assertEquals(5678, y);
66
Ben Murdochb8a8cc12014-11-26 15:28:44 +000067%AddNamedProperty(this.__proto__, "z", 1234, READ_ONLY);
Steve Blocka7e24c12009-10-30 11:49:00 +000068assertEquals(1234, z);
69eval("with({}) { var z = 5678; }");
70assertEquals(5678, z);
71
Ben Murdochb8a8cc12014-11-26 15:28:44 +000072%AddNamedProperty(this.__proto__, "w", 1234, READ_ONLY);
Steve Blocka7e24c12009-10-30 11:49:00 +000073assertEquals(1234, w);
Ben Murdochda12d292016-06-02 14:46:10 +010074eval("with({}) { var w = 5678; }");
Steve Blocka7e24c12009-10-30 11:49:00 +000075assertEquals(5678, w);