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

Side by Side Diff: test/webkit/class-syntax-call-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 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 unified diff | Download patch
« no previous file with comments | « test/webkit/class-syntax-call.js ('k') | test/webkit/class-syntax-default-constructor.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 Tests for calling the constructors of ES6 classes 1 Tests for calling the constructors of ES6 classes
2 2
3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ". 3 On success, you will see a series of "PASS" messages, followed by "TEST COMPLETE ".
4 4
5 5
6 PASS new A did not throw exception. 6 PASS new A did not throw exception.
7 PASS A() threw exception TypeError: Class constructors cannot be invoked without 'new'. 7 PASS A() threw exception TypeError: Class constructor A cannot be invoked withou t 'new'.
8 PASS new B did not throw exception. 8 PASS new B did not throw exception.
9 PASS B() threw exception TypeError: Class constructors cannot be invoked without 'new'. 9 PASS B() threw exception TypeError: Class constructor B cannot be invoked withou t 'new'.
10 PASS new (class { constructor() {} })() did not throw exception. 10 PASS new (class { constructor() {} })() did not throw exception.
11 PASS (class { constructor() {} })() threw exception TypeError: Class constructor s cannot be invoked without 'new'. 11 PASS (class { constructor() {} })() threw exception TypeError: Class constructor cannot be invoked without 'new'.
12 PASS new (class extends null { constructor() { super() } })() threw exception Ty peError: function () {} is not a constructor. 12 PASS new (class extends null { constructor() { super() } })() threw exception Ty peError: super is not a constructor.
13 PASS (class extends null { constructor() { super() } })() threw exception TypeEr ror: Class constructors cannot be invoked without 'new'. 13 PASS (class extends null { constructor() { super() } })() threw exception TypeEr ror: Class constructor cannot be invoked without 'new'.
14 PASS successfullyParsed is true 14 PASS successfullyParsed is true
15 15
16 TEST COMPLETE 16 TEST COMPLETE
OLDNEW
« no previous file with comments | « test/webkit/class-syntax-call.js ('k') | test/webkit/class-syntax-default-constructor.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698