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

Side by Side Diff: test/mjsunit/object-literal.js

Issue 1749353004: Ship ES2015 Function.name reform (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebased Created 4 years, 9 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
« no previous file with comments | « test/mjsunit/es6/classes.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 //
28 // Flags: --harmony-function-name
27 29
28 var obj = { 30 var obj = {
29 a: 7, 31 a: 7,
30 b: { x: 12, y: 24 }, 32 b: { x: 12, y: 24 },
31 c: 'Zebra' 33 c: 'Zebra'
32 } 34 }
33 35
34 assertEquals(7, obj.a); 36 assertEquals(7, obj.a);
35 assertEquals(12, obj.b.x); 37 assertEquals(12, obj.b.x);
36 assertEquals(24, obj.b.y); 38 assertEquals(24, obj.b.y);
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
211 1.30: 1.3 213 1.30: 1.3
212 }; 214 };
213 assertEquals(['1.2', '1.3'], Object.keys(o)); 215 assertEquals(['1.2', '1.3'], Object.keys(o));
214 })(); 216 })();
215 217
216 218
217 function TestNumericNamesGetter(expectedKeys, object) { 219 function TestNumericNamesGetter(expectedKeys, object) {
218 assertEquals(expectedKeys, Object.keys(object)); 220 assertEquals(expectedKeys, Object.keys(object));
219 expectedKeys.forEach(function(key) { 221 expectedKeys.forEach(function(key) {
220 var descr = Object.getOwnPropertyDescriptor(object, key); 222 var descr = Object.getOwnPropertyDescriptor(object, key);
221 assertEquals(key, descr.get.name); 223 assertEquals('get ' + key, descr.get.name);
222 }); 224 });
223 } 225 }
224 TestNumericNamesGetter(['1', '2', '3', '4', '5', '6', '7', '8', '9'], { 226 TestNumericNamesGetter(['1', '2', '3', '4', '5', '6', '7', '8', '9'], {
225 get 1() {}, 227 get 1() {},
226 get 2.() {}, 228 get 2.() {},
227 get 3.0() {}, 229 get 3.0() {},
228 get 4e0() {}, 230 get 4e0() {},
229 get 5E0() {}, 231 get 5E0() {},
230 get 6e-0() {}, 232 get 6e-0() {},
231 get 7E-0() {}, 233 get 7E-0() {},
232 get 0x8() {}, 234 get 0x8() {},
233 get 0X9() {}, 235 get 0X9() {},
234 }); 236 });
235 TestNumericNamesGetter(['1.2', '1.3'], { 237 TestNumericNamesGetter(['1.2', '1.3'], {
236 get 1.2() {}, 238 get 1.2() {},
237 get 1.30() {} 239 get 1.30() {}
238 }); 240 });
239 241
240 242
241 function TestNumericNamesSetter(expectedKeys, object) { 243 function TestNumericNamesSetter(expectedKeys, object) {
242 assertEquals(expectedKeys, Object.keys(object)); 244 assertEquals(expectedKeys, Object.keys(object));
243 expectedKeys.forEach(function(key) { 245 expectedKeys.forEach(function(key) {
244 var descr = Object.getOwnPropertyDescriptor(object, key); 246 var descr = Object.getOwnPropertyDescriptor(object, key);
245 assertEquals(key, descr.set.name); 247 assertEquals('set ' + key, descr.set.name);
246 }); 248 });
247 } 249 }
248 TestNumericNamesSetter(['1', '2', '3', '4', '5', '6', '7', '8', '9'], { 250 TestNumericNamesSetter(['1', '2', '3', '4', '5', '6', '7', '8', '9'], {
249 set 1(_) {}, 251 set 1(_) {},
250 set 2.(_) {}, 252 set 2.(_) {},
251 set 3.0(_) {}, 253 set 3.0(_) {},
252 set 4e0(_) {}, 254 set 4e0(_) {},
253 set 5E0(_) {}, 255 set 5E0(_) {},
254 set 6e-0(_) {}, 256 set 6e-0(_) {},
255 set 7E-0(_) {}, 257 set 7E-0(_) {},
256 set 0x8(_) {}, 258 set 0x8(_) {},
257 set 0X9(_) {}, 259 set 0X9(_) {},
258 }); 260 });
259 TestNumericNamesSetter(['1.2', '1.3'], { 261 TestNumericNamesSetter(['1.2', '1.3'], {
260 set 1.2(_) {; }, 262 set 1.2(_) {; },
261 set 1.30(_) {; } 263 set 1.30(_) {; }
262 }); 264 });
OLDNEW
« no previous file with comments | « test/mjsunit/es6/classes.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698