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

Unified Diff: test/webkit/for-in-cached-expected.txt

Issue 329413002: Throw syntax error when a getter/setter has the wrong number of params (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Add test exception Created 6 years, 6 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/for-in-cached.js ('k') | test/webkit/object-literal-direct-put.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/webkit/for-in-cached-expected.txt
diff --git a/test/webkit/for-in-cached-expected.txt b/test/webkit/for-in-cached-expected.txt
index 0d0c337cf14f625adf25d08567d2700821db00e0..e5538fe3b80bf0343db4690f0cd223eec5e0a354 100644
--- a/test/webkit/for-in-cached-expected.txt
+++ b/test/webkit/for-in-cached-expected.txt
@@ -34,8 +34,8 @@ PASS forIn3({ __proto__: { __proto__: { y3 : 2 } } }) is ['x', 'y3']
PASS forIn4(objectWithArrayAsProto) is []
PASS forIn4(objectWithArrayAsProto) is ['0']
PASS forIn5({get foo() { return 'called getter'} }) is ['foo', 'called getter']
-PASS forIn5({set foo() { } }) is ['foo', undefined]
-PASS forIn5({get foo() { return 'called getter'}, set foo() { }}) is ['foo', 'called getter']
+PASS forIn5({set foo(v) { } }) is ['foo', undefined]
+PASS forIn5({get foo() { return 'called getter'}, set foo(v) { }}) is ['foo', 'called getter']
PASS successfullyParsed is true
TEST COMPLETE
« no previous file with comments | « test/webkit/for-in-cached.js ('k') | test/webkit/object-literal-direct-put.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698