mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
903 B
16 lines
903 B
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.
|
|
PASS A() threw exception TypeError: Class constructor A cannot be invoked without 'new'.
|
|
PASS new B did not throw exception.
|
|
PASS B() threw exception TypeError: Class constructor B cannot be invoked without 'new'.
|
|
PASS new (class { constructor() {} })() did not throw exception.
|
|
PASS (class { constructor() {} })() threw exception TypeError: Class constructor cannot be invoked without 'new'.
|
|
PASS new (class extends null { constructor() { super() } })() threw exception TypeError: Super constructor null of anonymous class is not a constructor.
|
|
PASS (class extends null { constructor() { super() } })() threw exception TypeError: Class constructor cannot be invoked without 'new'.
|
|
PASS successfullyParsed is true
|
|
|
|
TEST COMPLETE
|
|
|