| Index: test/webkit/class-syntax-default-constructor-expected.txt
|
| diff --git a/test/webkit/class-syntax-default-constructor-expected.txt b/test/webkit/class-syntax-default-constructor-expected.txt
|
| index b08e7f0a1e4e28d4142644d56926b277101743c7..2a6e1c4a52538d058ae579086b6401a857a5034e 100644
|
| --- a/test/webkit/class-syntax-default-constructor-expected.txt
|
| +++ b/test/webkit/class-syntax-default-constructor-expected.txt
|
| @@ -4,11 +4,11 @@ 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() threw exception TypeError: Class constructor A 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() threw exception TypeError: Class constructor B 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
|
|
|