summaryrefslogtreecommitdiff
path: root/deps/v8/test/webkit/class-syntax-call-expected.txt
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/webkit/class-syntax-call-expected.txt')
-rw-r--r--deps/v8/test/webkit/class-syntax-call-expected.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/deps/v8/test/webkit/class-syntax-call-expected.txt b/deps/v8/test/webkit/class-syntax-call-expected.txt
index 79045ace95..00fbe1e922 100644
--- a/deps/v8/test/webkit/class-syntax-call-expected.txt
+++ b/deps/v8/test/webkit/class-syntax-call-expected.txt
@@ -4,13 +4,13 @@ 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 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 constructors cannot be invoked without 'new'.
+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 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 (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