2015-04-28 16:42:35 +00:00
Tests for calling the constructors of ES6 classes
On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".
PASS new A did not throw exception.
2015-11-24 17:16:40 +00:00
PASS A() threw exception TypeError: Class constructor A cannot be invoked without 'new'.
2015-04-28 16:42:35 +00:00
PASS new B did not throw exception.
2015-11-24 17:16:40 +00:00
PASS B() threw exception TypeError: Class constructor B cannot be invoked without 'new'.
2015-04-28 16:42:35 +00:00
PASS new (class { constructor() {} })() did not throw exception.
2019-12-05 20:26:18 +00:00
PASS (class { constructor() {} })() threw exception TypeError: Class constructors cannot be invoked without 'new'.
2016-12-19 10:12:22 +00:00
PASS new (class extends null { constructor() { super() } })() threw exception TypeError: Super constructor null of anonymous class is not a constructor.
2019-12-05 20:26:18 +00:00
PASS (class extends null { constructor() { super() } })() threw exception TypeError: Class constructors cannot be invoked without 'new'.
2015-04-28 16:42:35 +00:00
PASS successfullyParsed is true
TEST COMPLETE