aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/test/webkit/class-syntax-default-constructor-expected.txt
blob: b08e7f0a1e4e28d4142644d56926b277101743c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Tests for ES6 class syntax default constructor

On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE".


PASS new A instanceof A is true
PASS A() threw exception TypeError: Class constructors cannot be invoked without 'new'.
PASS A.prototype.constructor instanceof Function is true
PASS A.prototype.constructor.name is "A"
PASS new B instanceof A; new B instanceof A is true
PASS B() threw exception TypeError: Class constructors cannot be invoked without 'new'.
PASS B.prototype.constructor.name is "B"
PASS A !== B is true
PASS A.prototype.constructor !== B.prototype.constructor is true
PASS new (class extends (class { constructor(a, b) { return [a, b]; } }) {})(1, 2) is [1, 2]
PASS successfullyParsed is true

TEST COMPLETE