OLD | NEW |
(Empty) | |
| 1 // Copyright 2015 the V8 project authors. All rights reserved. |
| 2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. |
| 3 // |
| 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions |
| 6 // are met: |
| 7 // 1. Redistributions of source code must retain the above copyright |
| 8 // notice, this list of conditions and the following disclaimer. |
| 9 // 2. Redistributions in binary form must reproduce the above copyright |
| 10 // notice, this list of conditions and the following disclaimer in the |
| 11 // documentation and/or other materials provided with the distribution. |
| 12 // |
| 13 // THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND AN
Y |
| 14 // EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 15 // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 16 // DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR AN
Y |
| 17 // DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES |
| 18 // (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; |
| 19 // LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND O
N |
| 20 // ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 21 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 22 // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 23 |
| 24 // Flags: --harmony-sloppy |
| 25 |
| 26 description('Tests for ES6 class syntax expressions'); |
| 27 |
| 28 var constructorCallCount = 0; |
| 29 const staticMethodValue = [1]; |
| 30 const instanceMethodValue = [2]; |
| 31 const getterValue = [3]; |
| 32 var setterValue = undefined; |
| 33 var A = class { |
| 34 constructor() { constructorCallCount++; } |
| 35 static someStaticMethod() { return staticMethodValue; } |
| 36 static get someStaticGetter() { return getterValue; } |
| 37 static set someStaticSetter(value) { setterValue = value; } |
| 38 someInstanceMethod() { return instanceMethodValue; } |
| 39 get someGetter() { return getterValue; } |
| 40 set someSetter(value) { setterValue = value; } |
| 41 }; |
| 42 |
| 43 shouldBe("constructorCallCount", "0"); |
| 44 shouldBe("A.someStaticMethod()", "staticMethodValue"); |
| 45 shouldBe("A.someStaticGetter", "getterValue"); |
| 46 shouldBe("setterValue = undefined; A.someStaticSetter = 123; setterValue", "123"
); |
| 47 shouldBe("(new A).someInstanceMethod()", "instanceMethodValue"); |
| 48 shouldBe("constructorCallCount", "1"); |
| 49 shouldBe("(new A).someGetter", "getterValue"); |
| 50 shouldBe("constructorCallCount", "2"); |
| 51 shouldBe("(new A).someGetter", "getterValue"); |
| 52 shouldBe("setterValue = undefined; (new A).someSetter = 789; setterValue", "789"
); |
| 53 shouldBe("(new A).__proto__", "A.prototype"); |
| 54 shouldBe("A.prototype.constructor", "A"); |
| 55 |
| 56 shouldThrow("x = class", "'SyntaxError: Unexpected end of input'"); |
| 57 shouldThrow("x = class {", "'SyntaxError: Unexpected end of input'"); |
| 58 shouldThrow("x = class { ( }", "'SyntaxError: Unexpected token ('"); |
| 59 shouldNotThrow("x = class {}"); |
| 60 |
| 61 shouldThrow("x = class { constructor() {} constructor() {} }", "'SyntaxError: A
class may only have one constructor'"); |
| 62 shouldThrow("x = class { get constructor() {} }", "'SyntaxError: Class construct
or may not be an accessor'"); |
| 63 shouldThrow("x = class { set constructor() {} }", "'SyntaxError: Class construct
or may not be an accessor'"); |
| 64 shouldNotThrow("x = class { constructor() {} static constructor() { return stati
cMethodValue; } }"); |
| 65 shouldBe("x = class { constructor() {} static constructor() { return staticMetho
dValue; } }; x.constructor()", "staticMethodValue"); |
| 66 |
| 67 shouldThrow("x = class { constructor() {} static prototype() {} }", "'SyntaxErro
r: Classes may not have static property named prototype'"); |
| 68 shouldThrow("x = class { constructor() {} static get prototype() {} }", "'Syntax
Error: Classes may not have static property named prototype'"); |
| 69 shouldThrow("x = class { constructor() {} static set prototype() {} }", "'Syntax
Error: Classes may not have static property named prototype'"); |
| 70 shouldNotThrow("x = class { constructor() {} prototype() { return instanceMetho
dValue; } }"); |
| 71 shouldBe("x = class { constructor() {} prototype() { return instanceMethodValue;
} }; (new x).prototype()", "instanceMethodValue"); |
| 72 |
| 73 shouldNotThrow("x = class { constructor() {} set foo(a) {} }"); |
| 74 shouldNotThrow("x = class { constructor() {} set foo({x, y}) {} }"); |
| 75 shouldThrow("x = class { constructor() {} set foo() {} }"); |
| 76 shouldThrow("x = class { constructor() {} set foo(a, b) {} }"); |
| 77 shouldNotThrow("x = class { constructor() {} get foo() {} }"); |
| 78 shouldThrow("x = class { constructor() {} get foo(x) {} }"); |
| 79 shouldThrow("x = class { constructor() {} get foo({x, y}) {} }"); |
| 80 |
| 81 var successfullyParsed = true; |
OLD | NEW |