mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 11:36:57 +00:00

Pick up the current branch head for V8 4.9 https://github.com/v8/v8/commit/1ecba0f PR-URL: https://github.com/nodejs/node/pull/4722 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
17 lines
867 B
Plaintext
17 lines
867 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 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 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
|