525f7c85b9
BUG=v8:3330 LOG=N Review URL: https://codereview.chromium.org/1109783003 Cr-Commit-Position: refs/heads/master@{#28115}
17 lines
874 B
Plaintext
17 lines
874 B
Plaintext
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 constructors cannot be invoked without 'new'.
|
|
PASS new B did not throw exception.
|
|
PASS B() threw exception TypeError: Class constructors cannot be invoked without 'new'.
|
|
PASS new (class { constructor() {} })() did not throw exception.
|
|
PASS (class { constructor() {} })() threw exception TypeError: Class constructors cannot be invoked without 'new'.
|
|
PASS new (class extends null { constructor() { super() } })() threw exception TypeError: function () {} is not a constructor.
|
|
PASS (class extends null { constructor() { super() } })() threw exception TypeError: Class constructors cannot be invoked without 'new'.
|
|
PASS successfullyParsed is true
|
|
|
|
TEST COMPLETE
|