class-syntax-call-expected.txt 867 Bytes
Newer Older
arv's avatar
arv committed
1 2 3 4 5 6
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.
7
PASS A() threw exception TypeError: Class constructor A cannot be invoked without 'new'.
arv's avatar
arv committed
8
PASS new B did not throw exception.
9
PASS B() threw exception TypeError: Class constructor B cannot be invoked without 'new'.
arv's avatar
arv committed
10
PASS new (class { constructor() {} })() did not throw exception.
11 12 13
PASS (class { constructor() {} })() threw exception TypeError: Class constructor  cannot be invoked without 'new'.
PASS new (class extends null { constructor() { super() } })() threw exception TypeError: super is not a constructor.
PASS (class extends null { constructor() { super() } })() threw exception TypeError: Class constructor  cannot be invoked without 'new'.
arv's avatar
arv committed
14 15 16
PASS successfullyParsed is true

TEST COMPLETE