Index: test/webkit/class-syntax-super.js |
diff --git a/test/webkit/class-syntax-super.js b/test/webkit/class-syntax-super.js |
index 8625831de5ccfce31766321f09e9548477dc72c2..e355b4b96503e51b03a40beaeb6e5ebad98b43bb 100644 |
--- a/test/webkit/class-syntax-super.js |
+++ b/test/webkit/class-syntax-super.js |
@@ -80,12 +80,12 @@ shouldBeFalse('x instanceof Base'); |
shouldThrow('new (class extends Base { constructor() { } })', '"ReferenceError: this is not defined"'); |
shouldThrow('new (class extends Base { constructor() { return 1; } })', '"TypeError: Derived constructors may only return object or undefined"'); |
shouldThrow('new (class extends null { constructor() { return undefined } })'); |
-shouldThrow('new (class extends null { constructor() { super(); return undefined } })', '"TypeError: function () {} is not a constructor"'); |
+shouldThrow('new (class extends null { constructor() { super(); return undefined } })', '"TypeError: super is not a constructor"'); |
shouldBe('x = { }; new (class extends null { constructor() { return x } });', 'x'); |
shouldBeTrue('x instanceof Object'); |
shouldThrow('new (class extends null { constructor() { } })', '"ReferenceError: this is not defined"'); |
shouldThrow('new (class extends null { constructor() { return 1; } })', '"TypeError: Derived constructors may only return object or undefined"'); |
-shouldThrow('new (class extends null { constructor() { super() } })', '"TypeError: function () {} is not a constructor"'); |
+shouldThrow('new (class extends null { constructor() { super() } })', '"TypeError: super is not a constructor"'); |
shouldThrow('new (class { constructor() { super() } })', '"SyntaxError: \'super\' keyword unexpected here"'); |
shouldThrow('function x() { super(); }', '"SyntaxError: \'super\' keyword unexpected here"'); |
shouldThrow('new (class extends Object { constructor() { function x() { super() } } })', '"SyntaxError: \'super\' keyword unexpected here"'); |