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

Side by Side Diff: test/webkit/class-syntax-extends.js

Issue 1467473002: Install ConstructNonConstructable as construct stub for non-constructables. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 5 years 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
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 the V8 project authors. All rights reserved.
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 1. Redistributions of source code must retain the above copyright 7 // 1. Redistributions of source code must retain the above copyright
8 // notice, this list of conditions and the following disclaimer. 8 // notice, this list of conditions and the following disclaimer.
9 // 2. Redistributions in binary form must reproduce the above copyright 9 // 2. Redistributions in binary form must reproduce the above copyright
10 // notice, this list of conditions and the following disclaimer in the 10 // notice, this list of conditions and the following disclaimer in the
(...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after
93 shouldBe('x = 1; namespace = {}; namespace.A = class { constructor() { } }; try { namespace.B = class extends (namespace.A, x++) { constructor() { } } } catch ( e) { } x', '2'); 93 shouldBe('x = 1; namespace = {}; namespace.A = class { constructor() { } }; try { namespace.B = class extends (namespace.A, x++) { constructor() { } } } catch ( e) { } x', '2');
94 94
95 shouldBe('Object.getPrototypeOf((class { constructor () { } }).prototype)', 'Obj ect.prototype'); 95 shouldBe('Object.getPrototypeOf((class { constructor () { } }).prototype)', 'Obj ect.prototype');
96 shouldBe('Object.getPrototypeOf((class extends null { constructor () { super(); } }).prototype)', 'null'); 96 shouldBe('Object.getPrototypeOf((class extends null { constructor () { super(); } }).prototype)', 'null');
97 shouldThrow('new (class extends undefined { constructor () { this } })', '"TypeE rror: Class extends value undefined is not a function or null"'); 97 shouldThrow('new (class extends undefined { constructor () { this } })', '"TypeE rror: Class extends value undefined is not a function or null"');
98 shouldThrow('new (class extends undefined { constructor () { super(); } })', '"T ypeError: Class extends value undefined is not a function or null"'); 98 shouldThrow('new (class extends undefined { constructor () { super(); } })', '"T ypeError: Class extends value undefined is not a function or null"');
99 shouldThrow('x = {}; new (class extends undefined { constructor () { return x; } })', '"TypeError: Class extends value undefined is not a function or null"'); 99 shouldThrow('x = {}; new (class extends undefined { constructor () { return x; } })', '"TypeError: Class extends value undefined is not a function or null"');
100 shouldThrow('y = 12; new (class extends undefined { constructor () { return y; } })', '"TypeError: Class extends value undefined is not a function or null"'); 100 shouldThrow('y = 12; new (class extends undefined { constructor () { return y; } })', '"TypeError: Class extends value undefined is not a function or null"');
101 shouldBeTrue ('class x {}; new (class extends null { constructor () { return new x; } }) instanceof x'); 101 shouldBeTrue ('class x {}; new (class extends null { constructor () { return new x; } }) instanceof x');
102 shouldThrow('new (class extends null { constructor () { this; } })', '"Reference Error: this is not defined"'); 102 shouldThrow('new (class extends null { constructor () { this; } })', '"Reference Error: this is not defined"');
103 shouldThrow('new (class extends null { constructor () { super(); } })', '"TypeEr ror: function () {} is not a constructor"'); 103 shouldThrow('new (class extends null { constructor () { super(); } })', '"TypeEr ror: super is not a constructor"');
104 shouldBe('x = {}; new (class extends null { constructor () { return x } })', 'x' ); 104 shouldBe('x = {}; new (class extends null { constructor () { return x } })', 'x' );
105 shouldThrow('y = 12; new (class extends null { constructor () { return y; } })', '"TypeError: Derived constructors may only return object or undefined"'); 105 shouldThrow('y = 12; new (class extends null { constructor () { return y; } })', '"TypeError: Derived constructors may only return object or undefined"');
106 shouldBeTrue ('class x {}; new (class extends null { constructor () { return new x; } }) instanceof x'); 106 shouldBeTrue ('class x {}; new (class extends null { constructor () { return new x; } }) instanceof x');
107 shouldBe('x = null; Object.getPrototypeOf((class extends x { }).prototype)', 'nu ll'); 107 shouldBe('x = null; Object.getPrototypeOf((class extends x { }).prototype)', 'nu ll');
108 shouldBeTrue('Object.prototype.isPrototypeOf(class { })'); 108 shouldBeTrue('Object.prototype.isPrototypeOf(class { })');
109 shouldBeTrue('Function.prototype.isPrototypeOf(class { })'); 109 shouldBeTrue('Function.prototype.isPrototypeOf(class { })');
110 110
111 var successfullyParsed = true; 111 var successfullyParsed = true;
OLDNEW
« no previous file with comments | « test/webkit/class-syntax-default-constructor-expected.txt ('k') | test/webkit/class-syntax-extends-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698