class-syntax-call-expected.txt 903 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
PASS (class { constructor() {} })() threw exception TypeError: Class constructor  cannot be invoked without 'new'.
12
PASS new (class extends null { constructor() { super() } })() threw exception TypeError: Super constructor null of anonymous class is not a constructor.
13
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