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

Unified Diff: test/webkit/function-declaration-statement.js

Issue 1928513004: Ship for-in initializer deprecation (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Adjust tests Created 4 years, 8 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/fast/js/parser-syntax-check-expected.txt ('k') | test/webkit/toString-for-var-decl.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/webkit/function-declaration-statement.js
diff --git a/test/webkit/function-declaration-statement.js b/test/webkit/function-declaration-statement.js
index 34e3fdd14f28b4bf6ddc1223f1835d107a91c12d..2c866d5944c08d63592629bc610bece75745f969 100644
--- a/test/webkit/function-declaration-statement.js
+++ b/test/webkit/function-declaration-statement.js
@@ -147,7 +147,7 @@ shouldBeTrue("forInVarTest()");
function forInVarInitTest()
{
var a;
- for (var a = false in { field: false })
+ for (var a in { field: false })
function f()
{
return true;
« no previous file with comments | « test/webkit/fast/js/parser-syntax-check-expected.txt ('k') | test/webkit/toString-for-var-decl.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698