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

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

Issue 1467473002: Install ConstructNonConstructable as construct stub for non-constructables. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 5 years, 1 month 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-default-constructor.js ('k') | test/webkit/class-syntax-extends.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « test/webkit/class-syntax-default-constructor.js ('k') | test/webkit/class-syntax-extends.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698