blob: cd09e6a0103d0fc3542102ad7379d51d61072da1 [file] [log] [blame]
rniwa@webkit.org12045462015-03-17 05:55:46 +00001Tests for ES6 class syntax expressions
2
3On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
4
5
rniwa@webkit.org65c9b0d2015-01-29 22:59:19 +00006PASS constructorCallCount is 0
7PASS A.someStaticMethod() is staticMethodValue
rniwa@webkit.orgfa7d1082015-04-01 02:35:56 +00008PASS A.someStaticGetter is getterValue
9PASS setterValue = undefined; A.someStaticSetter = 123; setterValue is 123
rniwa@webkit.org65c9b0d2015-01-29 22:59:19 +000010PASS (new A).someInstanceMethod() is instanceMethodValue
11PASS constructorCallCount is 1
12PASS (new A).someGetter is getterValue
13PASS constructorCallCount is 2
14PASS (new A).someGetter is getterValue
rniwa@webkit.orgfa7d1082015-04-01 02:35:56 +000015PASS setterValue = undefined; (new A).someSetter = 789; setterValue is 789
rniwa@webkit.org65c9b0d2015-01-29 22:59:19 +000016PASS (new A).__proto__ is A.prototype
17PASS A.prototype.constructor is A
18PASS x = class threw exception SyntaxError: Unexpected end of script.
19PASS x = class { threw exception SyntaxError: Unexpected end of script.
rniwa@webkit.org50dd7352015-05-02 02:23:01 +000020PASS x = class { ( } threw exception SyntaxError: Unexpected token '('.
rniwa@webkit.org12045462015-03-17 05:55:46 +000021PASS x = class {} did not throw exception.
rniwa@webkit.org65c9b0d2015-01-29 22:59:19 +000022PASS x = class { constructor() {} constructor() {} } threw exception SyntaxError: Cannot declare multiple constructors in a single class..
rniwa@webkit.orgfd64a402015-04-27 04:18:18 +000023PASS x = class { get constructor() {} } threw exception SyntaxError: Cannot declare a getter or setter named 'constructor'..
24PASS x = class { set constructor() {} } threw exception SyntaxError: Cannot declare a getter or setter named 'constructor'..
rniwa@webkit.org65c9b0d2015-01-29 22:59:19 +000025PASS x = class { constructor() {} static constructor() { return staticMethodValue; } } did not throw exception.
rniwa@webkit.orgfd64a402015-04-27 04:18:18 +000026PASS x = class { constructor() {} static constructor() { return staticMethodValue; } }; x.constructor() is staticMethodValue
rniwa@webkit.org65c9b0d2015-01-29 22:59:19 +000027PASS x = class { constructor() {} static prototype() {} } threw exception SyntaxError: Cannot declare a static method named 'prototype'..
rniwa@webkit.orgfd64a402015-04-27 04:18:18 +000028PASS x = class { constructor() {} static get prototype() {} } threw exception SyntaxError: Cannot declare a static method named 'prototype'..
29PASS x = class { constructor() {} static set prototype() {} } threw exception SyntaxError: Cannot declare a static method named 'prototype'..
30PASS x = class { constructor() {} prototype() { return instanceMethodValue; } } did not throw exception.
31PASS x = class { constructor() {} prototype() { return instanceMethodValue; } }; (new x).prototype() is instanceMethodValue
32PASS x = class { constructor() {} set foo(a) {} } did not throw exception.
33PASS x = class { constructor() {} set foo({x, y}) {} } did not throw exception.
34PASS x = class { constructor() {} set foo() {} } threw exception SyntaxError: Unexpected token ')'. setter functions must have one parameter..
35PASS x = class { constructor() {} set foo(a, b) {} } threw exception SyntaxError: Unexpected token ','. setter functions must have one parameter..
36PASS x = class { constructor() {} get foo() {} } did not throw exception.
37PASS x = class { constructor() {} get foo(x) {} } threw exception SyntaxError: Unexpected identifier 'x'. getter functions must have no parameters..
38PASS x = class { constructor() {} get foo({x, y}) {} } threw exception SyntaxError: Unexpected token '{'. getter functions must have no parameters..
rniwa@webkit.org65c9b0d2015-01-29 22:59:19 +000039PASS successfullyParsed is true
40
41TEST COMPLETE
42