OLD | NEW |
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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
91 shouldBe('x = 1; namespace = {}; namespace.A = class { constructor() { } }; try
{ namespace.B = class extends (namespace.A, x++) { constructor() { } } } catch (
e) { } x', '2'); | 91 shouldBe('x = 1; namespace = {}; namespace.A = class { constructor() { } }; try
{ namespace.B = class extends (namespace.A, x++) { constructor() { } } } catch (
e) { } x', '2'); |
92 | 92 |
93 shouldBe('Object.getPrototypeOf((class { constructor () { } }).prototype)', 'Obj
ect.prototype'); | 93 shouldBe('Object.getPrototypeOf((class { constructor () { } }).prototype)', 'Obj
ect.prototype'); |
94 shouldBe('Object.getPrototypeOf((class extends null { constructor () { super();
} }).prototype)', 'null'); | 94 shouldBe('Object.getPrototypeOf((class extends null { constructor () { super();
} }).prototype)', 'null'); |
95 shouldThrow('new (class extends undefined { constructor () { this } })', '"TypeE
rror: Class extends value undefined is not a constructor or null"'); | 95 shouldThrow('new (class extends undefined { constructor () { this } })', '"TypeE
rror: Class extends value undefined is not a constructor or null"'); |
96 shouldThrow('new (class extends undefined { constructor () { super(); } })', '"T
ypeError: Class extends value undefined is not a constructor or null"'); | 96 shouldThrow('new (class extends undefined { constructor () { super(); } })', '"T
ypeError: Class extends value undefined is not a constructor or null"'); |
97 shouldThrow('x = {}; new (class extends undefined { constructor () { return x; }
})', '"TypeError: Class extends value undefined is not a constructor or null"')
; | 97 shouldThrow('x = {}; new (class extends undefined { constructor () { return x; }
})', '"TypeError: Class extends value undefined is not a constructor or null"')
; |
98 shouldThrow('y = 12; new (class extends undefined { constructor () { return y; }
})', '"TypeError: Class extends value undefined is not a constructor or null"')
; | 98 shouldThrow('y = 12; new (class extends undefined { constructor () { return y; }
})', '"TypeError: Class extends value undefined is not a constructor or null"')
; |
99 shouldBeTrue ('class x {}; new (class extends null { constructor () { return new
x; } }) instanceof x'); | 99 shouldBeTrue ('class x {}; new (class extends null { constructor () { return new
x; } }) instanceof x'); |
100 shouldThrow('new (class extends null { constructor () { this; } })', '"Reference
Error: this is not defined"'); | 100 shouldThrow('new (class extends null { constructor () { this; } })', '"Reference
Error: this is not defined"'); |
101 shouldThrow('new (class extends null { constructor () { super(); } })', '"TypeEr
ror: super is not a constructor"'); | 101 shouldThrow('new (class extends null { constructor () { super(); } })', '"TypeEr
ror: Super constructor null of anonymous class is not a constructor"'); |
102 shouldBe('x = {}; new (class extends null { constructor () { return x } })', 'x'
); | 102 shouldBe('x = {}; new (class extends null { constructor () { return x } })', 'x'
); |
103 shouldThrow('y = 12; new (class extends null { constructor () { return y; } })',
'"TypeError: Derived constructors may only return object or undefined"'); | 103 shouldThrow('y = 12; new (class extends null { constructor () { return y; } })',
'"TypeError: Derived constructors may only return object or undefined"'); |
104 shouldBeTrue ('class x {}; new (class extends null { constructor () { return new
x; } }) instanceof x'); | 104 shouldBeTrue ('class x {}; new (class extends null { constructor () { return new
x; } }) instanceof x'); |
105 shouldBe('x = null; Object.getPrototypeOf((class extends x { }).prototype)', 'nu
ll'); | 105 shouldBe('x = null; Object.getPrototypeOf((class extends x { }).prototype)', 'nu
ll'); |
106 shouldBeTrue('Object.prototype.isPrototypeOf(class { })'); | 106 shouldBeTrue('Object.prototype.isPrototypeOf(class { })'); |
107 shouldBeTrue('Function.prototype.isPrototypeOf(class { })'); | 107 shouldBeTrue('Function.prototype.isPrototypeOf(class { })'); |
108 | 108 |
109 var successfullyParsed = true; | 109 var successfullyParsed = true; |
OLD | NEW |