2015-06-19 13:23:56 +02: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.
2016-03-01 08:58:05 -08:00
PASS A() threw exception TypeError: Class constructor A cannot be invoked without 'new'.
2015-06-19 13:23:56 +02:00
PASS new B did not throw exception.
2016-03-01 08:58:05 -08:00
PASS B() threw exception TypeError: Class constructor B cannot be invoked without 'new'.
2015-06-19 13:23:56 +02:00
PASS new (class { constructor() {} })() did not throw exception.
2020-03-05 10:49:19 -08:00
PASS (class { constructor() {} })() threw exception TypeError: Class constructors cannot be invoked without 'new'.
2017-03-21 10:16:54 +01:00
PASS new (class extends null { constructor() { super() } })() threw exception TypeError: Super constructor null of anonymous class is not a constructor.
2020-03-05 10:49:19 -08:00
PASS (class extends null { constructor() { super() } })() threw exception TypeError: Class constructors cannot be invoked without 'new'.
2015-06-19 13:23:56 +02:00
PASS successfullyParsed is true
TEST COMPLETE