Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(160)

Side by Side Diff: test/mjsunit/proto-accessor.js

Issue 181453002: Reset trunk to 3.24.35.4 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 6 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | test/mjsunit/regress-3135.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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: --harmony-symbols
29
30 var desc = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__"); 28 var desc = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__");
31 var getProto = desc.get; 29 assertEquals("function", typeof desc.get);
32 var setProto = desc.set; 30 assertEquals("function", typeof desc.set);
33 31 assertDoesNotThrow("desc.get.call({})");
34 function TestNoPoisonPill() { 32 assertDoesNotThrow("desc.set.call({}, {})");
35 assertEquals("function", typeof desc.get);
36 assertEquals("function", typeof desc.set);
37 assertDoesNotThrow("desc.get.call({})");
38 assertDoesNotThrow("desc.set.call({}, {})");
39
40 var obj = {};
41 var obj2 = {};
42 desc.set.call(obj, obj2);
43 assertEquals(obj.__proto__, obj2);
44 assertEquals(desc.get.call(obj), obj2);
45 }
46 TestNoPoisonPill();
47 33
48 34
49 function TestRedefineObjectPrototypeProtoGetter() { 35 var obj = {};
50 Object.defineProperty(Object.prototype, "__proto__", { 36 var obj2 = {};
51 get: function() { 37 desc.set.call(obj, obj2);
52 return 42; 38 assertEquals(obj.__proto__, obj2);
53 } 39 assertEquals(desc.get.call(obj), obj2);
54 });
55 assertEquals({}.__proto__, 42);
56 assertEquals(desc.get.call({}), Object.prototype);
57
58 var desc2 = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__");
59 assertEquals(desc2.get.call({}), 42);
60 assertEquals(desc2.set.call({}), undefined);
61
62 Object.defineProperty(Object.prototype, "__proto__", {
63 set: function(x) {}
64 });
65 var desc3 = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__");
66 assertEquals(desc3.get.call({}), 42);
67 assertEquals(desc3.set.call({}), undefined);
68 }
69 TestRedefineObjectPrototypeProtoGetter();
70 40
71 41
72 function TestRedefineObjectPrototypeProtoSetter() { 42 // Check that any redefinition of the __proto__ accessor works.
73 Object.defineProperty(Object.prototype, "__proto__", { set: undefined }); 43 Object.defineProperty(Object.prototype, "__proto__", {
74 assertThrows(function() { 44 get: function() {
75 "use strict"; 45 return 42;
76 var o = {}; 46 }
77 var p = {}; 47 });
78 o.__proto__ = p; 48 assertEquals({}.__proto__, 42);
79 }, TypeError); 49 assertEquals(desc.get.call({}), Object.prototype);
80 }
81 TestRedefineObjectPrototypeProtoSetter();
82 50
83 51
84 function TestGetProtoOfValues() { 52 var desc2 = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__");
85 assertEquals(getProto.call(1), Number.prototype); 53 assertEquals(desc2.get.call({}), 42);
86 assertEquals(getProto.call(true), Boolean.prototype); 54 assertDoesNotThrow("desc2.set.call({})");
87 assertEquals(getProto.call(false), Boolean.prototype);
88 assertEquals(getProto.call('s'), String.prototype);
89 assertEquals(getProto.call(Symbol()), Symbol.prototype);
90
91 assertThrows(function() { getProto.call(null); }, TypeError);
92 assertThrows(function() { getProto.call(undefined); }, TypeError);
93 }
94 TestGetProtoOfValues();
95 55
96 56
97 var values = [1, true, false, 's', Symbol()]; 57 Object.defineProperty(Object.prototype, "__proto__", { set:function(x){} });
58 var desc3 = Object.getOwnPropertyDescriptor(Object.prototype, "__proto__");
59 assertDoesNotThrow("desc3.get.call({})");
60 assertDoesNotThrow("desc3.set.call({})");
98 61
99 62
100 function TestSetProtoOfValues() { 63 Object.defineProperty(Object.prototype, "__proto__", { set: undefined });
101 for (var i = 0; i < values.length; i++) { 64 assertThrows(function() {
102 assertEquals(setProto.call(values[i], i), undefined); 65 "use strict";
103 }
104
105 assertThrows(function() { setProto.call(null, 7); }, TypeError);
106 assertThrows(function() { setProto.call(undefined, 8); }, TypeError);
107 }
108 TestSetProtoOfValues();
109
110
111 function TestSetProtoToValue() {
112 var object = {};
113 var proto = {};
114 setProto.call(object, proto);
115
116 var valuesWithUndefined = values.concat(undefined);
117
118 for (var i = 0; i < valuesWithUndefined.length; i++) {
119 assertEquals(setProto.call(object, valuesWithUndefined[i]), undefined);
120 assertEquals(getProto.call(object), proto);
121 }
122
123 // null is the only valid value that can be used as a [[Prototype]].
124 assertEquals(setProto.call(object, null), undefined);
125 assertEquals(getProto.call(object), null);
126 }
127 TestSetProtoToValue();
128
129
130 function TestDeleteProto() {
131 assertTrue(delete Object.prototype.__proto__);
132 var o = {}; 66 var o = {};
133 var p = {}; 67 var p = {};
134 o.__proto__ = p; 68 o.__proto__ = p;
135 assertEquals(Object.getPrototypeOf(o), Object.prototype); 69 }, TypeError);
136 var desc4 = Object.getOwnPropertyDescriptor(o, "__proto__"); 70
137 assertTrue(desc4.configurable); 71
138 assertTrue(desc4.enumerable); 72 assertTrue(delete Object.prototype.__proto__);
139 assertTrue(desc4.writable); 73 var o = {};
140 assertEquals(desc4.value, p); 74 var p = {};
141 } 75 o.__proto__ = p;
142 TestDeleteProto(); 76 assertEquals(Object.getPrototypeOf(o), Object.prototype);
77 var desc4 = Object.getOwnPropertyDescriptor(o, "__proto__");
78 assertTrue(desc4.configurable);
79 assertTrue(desc4.enumerable);
80 assertTrue(desc4.writable);
81 assertEquals(desc4.value, p);
OLDNEW
« no previous file with comments | « test/mjsunit/mjsunit.status ('k') | test/mjsunit/regress-3135.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698