rniwa@webkit.org | 1204546 | 2015-03-17 05:55:46 +0000 | [diff] [blame] | 1 | Tests for ES6 class syntax expressions |
| 2 | |
| 3 | On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE". |
| 4 | |
| 5 | |
rniwa@webkit.org | 65c9b0d | 2015-01-29 22:59:19 +0000 | [diff] [blame] | 6 | PASS constructorCallCount is 0 |
| 7 | PASS A.someStaticMethod() is staticMethodValue |
rniwa@webkit.org | fa7d108 | 2015-04-01 02:35:56 +0000 | [diff] [blame] | 8 | PASS A.someStaticGetter is getterValue |
| 9 | PASS setterValue = undefined; A.someStaticSetter = 123; setterValue is 123 |
rniwa@webkit.org | 65c9b0d | 2015-01-29 22:59:19 +0000 | [diff] [blame] | 10 | PASS (new A).someInstanceMethod() is instanceMethodValue |
| 11 | PASS constructorCallCount is 1 |
| 12 | PASS (new A).someGetter is getterValue |
| 13 | PASS constructorCallCount is 2 |
| 14 | PASS (new A).someGetter is getterValue |
rniwa@webkit.org | fa7d108 | 2015-04-01 02:35:56 +0000 | [diff] [blame] | 15 | PASS setterValue = undefined; (new A).someSetter = 789; setterValue is 789 |
rniwa@webkit.org | 65c9b0d | 2015-01-29 22:59:19 +0000 | [diff] [blame] | 16 | PASS (new A).__proto__ is A.prototype |
| 17 | PASS A.prototype.constructor is A |
| 18 | PASS x = class threw exception SyntaxError: Unexpected end of script. |
| 19 | PASS x = class { threw exception SyntaxError: Unexpected end of script. |
rniwa@webkit.org | 50dd735 | 2015-05-02 02:23:01 +0000 | [diff] [blame] | 20 | PASS x = class { ( } threw exception SyntaxError: Unexpected token '('. |
rniwa@webkit.org | 1204546 | 2015-03-17 05:55:46 +0000 | [diff] [blame] | 21 | PASS x = class {} did not throw exception. |
rniwa@webkit.org | 65c9b0d | 2015-01-29 22:59:19 +0000 | [diff] [blame] | 22 | PASS x = class { constructor() {} constructor() {} } threw exception SyntaxError: Cannot declare multiple constructors in a single class.. |
rniwa@webkit.org | fd64a40 | 2015-04-27 04:18:18 +0000 | [diff] [blame] | 23 | PASS x = class { get constructor() {} } threw exception SyntaxError: Cannot declare a getter or setter named 'constructor'.. |
| 24 | PASS x = class { set constructor() {} } threw exception SyntaxError: Cannot declare a getter or setter named 'constructor'.. |
rniwa@webkit.org | 65c9b0d | 2015-01-29 22:59:19 +0000 | [diff] [blame] | 25 | PASS x = class { constructor() {} static constructor() { return staticMethodValue; } } did not throw exception. |
rniwa@webkit.org | fd64a40 | 2015-04-27 04:18:18 +0000 | [diff] [blame] | 26 | PASS x = class { constructor() {} static constructor() { return staticMethodValue; } }; x.constructor() is staticMethodValue |
rniwa@webkit.org | 65c9b0d | 2015-01-29 22:59:19 +0000 | [diff] [blame] | 27 | PASS x = class { constructor() {} static prototype() {} } threw exception SyntaxError: Cannot declare a static method named 'prototype'.. |
rniwa@webkit.org | fd64a40 | 2015-04-27 04:18:18 +0000 | [diff] [blame] | 28 | PASS x = class { constructor() {} static get prototype() {} } threw exception SyntaxError: Cannot declare a static method named 'prototype'.. |
| 29 | PASS x = class { constructor() {} static set prototype() {} } threw exception SyntaxError: Cannot declare a static method named 'prototype'.. |
| 30 | PASS x = class { constructor() {} prototype() { return instanceMethodValue; } } did not throw exception. |
| 31 | PASS x = class { constructor() {} prototype() { return instanceMethodValue; } }; (new x).prototype() is instanceMethodValue |
| 32 | PASS x = class { constructor() {} set foo(a) {} } did not throw exception. |
| 33 | PASS x = class { constructor() {} set foo({x, y}) {} } did not throw exception. |
| 34 | PASS x = class { constructor() {} set foo() {} } threw exception SyntaxError: Unexpected token ')'. setter functions must have one parameter.. |
| 35 | PASS x = class { constructor() {} set foo(a, b) {} } threw exception SyntaxError: Unexpected token ','. setter functions must have one parameter.. |
| 36 | PASS x = class { constructor() {} get foo() {} } did not throw exception. |
| 37 | PASS x = class { constructor() {} get foo(x) {} } threw exception SyntaxError: Unexpected identifier 'x'. getter functions must have no parameters.. |
| 38 | PASS x = class { constructor() {} get foo({x, y}) {} } threw exception SyntaxError: Unexpected token '{'. getter functions must have no parameters.. |
rniwa@webkit.org | 65c9b0d | 2015-01-29 22:59:19 +0000 | [diff] [blame] | 39 | PASS successfullyParsed is true |
| 40 | |
| 41 | TEST COMPLETE |
| 42 | |