Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1052)

Unified Diff: test/webkit/class-syntax-call-expected.txt

Issue 1109783003: Import JSC class tests (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: git rebase Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/webkit/class-syntax-call.js ('k') | test/webkit/class-syntax-declaration.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/webkit/class-syntax-call-expected.txt
diff --git a/test/webkit/class-syntax-call-expected.txt b/test/webkit/class-syntax-call-expected.txt
new file mode 100644
index 0000000000000000000000000000000000000000..79045ace956d49c59fa3f91df3f8bc02f838940c
--- /dev/null
+++ b/test/webkit/class-syntax-call-expected.txt
@@ -0,0 +1,16 @@
+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 constructors 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 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 successfullyParsed is true
+
+TEST COMPLETE
« no previous file with comments | « test/webkit/class-syntax-call.js ('k') | test/webkit/class-syntax-declaration.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698