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

Unified Diff: test/message/rest-param-class-setter-strict.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/cctest/test-parsing.cc ('k') | test/message/rest-param-class-setter-strict.out » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/message/rest-param-class-setter-strict.js
diff --git a/test/message/super-in-function.js b/test/message/rest-param-class-setter-strict.js
similarity index 52%
copy from test/message/super-in-function.js
copy to test/message/rest-param-class-setter-strict.js
index edaa0e4eadc7befdb7ed28a3e06eaa827c4388f0..d37edb6f3f70373b0b513e29363eddcafb343f1b 100644
--- a/test/message/super-in-function.js
+++ b/test/message/rest-param-class-setter-strict.js
@@ -2,9 +2,11 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
-// Flags: --harmony-classes
+// Flags: --harmony-rest-parameters --harmony-classes
'use strict';
-function f() {
- super.x();
+var _bad = "setting this should fail!";
+class C {
+ get bad() { return _bad; }
+ set bad(...args) { _bad = args[0]; }
}
« no previous file with comments | « test/cctest/test-parsing.cc ('k') | test/message/rest-param-class-setter-strict.out » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698