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

Unified Diff: test/message/rest-param-object-setter-sloppy.js

Issue 1141223002: [parser] report SyntaxError if rest parameter used in Setter MethodDefinition (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Add cctest Created 5 years, 7 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/message/rest-param-class-setter-strict.out ('k') | test/message/rest-param-object-setter-sloppy.out » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/message/rest-param-object-setter-sloppy.js
diff --git a/test/message/formal-parameters-bad-rest.js b/test/message/rest-param-object-setter-sloppy.js
similarity index 65%
copy from test/message/formal-parameters-bad-rest.js
copy to test/message/rest-param-object-setter-sloppy.js
index c67e1de93fed808fb0578e9029dabef201ab51e4..08c03298dc26dfee9f31e39108ba0b1519a96988 100644
--- a/test/message/formal-parameters-bad-rest.js
+++ b/test/message/rest-param-object-setter-sloppy.js
@@ -4,4 +4,8 @@
//
// Flags: --harmony-rest-parameters
-function foo(...b, a) { return a }
+var _bad = "this should fail!";
+({
+ get bad() { return _bad; },
+ set bad(...args) { _bad = args[0]; }
+});
« no previous file with comments | « test/message/rest-param-class-setter-strict.out ('k') | test/message/rest-param-object-setter-sloppy.out » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698