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

Side by Side 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, 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 unified diff | Download patch
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 the V8 project authors. All rights reserved.
2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved. 2 // Copyright (C) 2005, 2006, 2007, 2008, 2009 Apple Inc. All rights reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 1. Redistributions of source code must retain the above copyright 7 // 1. Redistributions of source code must retain the above copyright
8 // notice, this list of conditions and the following disclaimer. 8 // notice, this list of conditions and the following disclaimer.
9 // 2. Redistributions in binary form must reproduce the above copyright 9 // 2. Redistributions in binary form must reproduce the above copyright
10 // notice, this list of conditions and the following disclaimer in the 10 // notice, this list of conditions and the following disclaimer in the
(...skipping 129 matching lines...) Expand 10 before | Expand all | Expand 10 after
140 } 140 }
141 141
142 return f(); 142 return f();
143 } 143 }
144 144
145 shouldBeTrue("forInVarTest()"); 145 shouldBeTrue("forInVarTest()");
146 146
147 function forInVarInitTest() 147 function forInVarInitTest()
148 { 148 {
149 var a; 149 var a;
150 for (var a = false in { field: false }) 150 for (var a in { field: false })
151 function f() 151 function f()
152 { 152 {
153 return true; 153 return true;
154 } 154 }
155 155
156 return f(); 156 return f();
157 } 157 }
158 158
159 shouldBeTrue("forInVarInitTest()"); 159 shouldBeTrue("forInVarInitTest()");
160 160
(...skipping 15 matching lines...) Expand all
176 label: 176 label:
177 function f() 177 function f()
178 { 178 {
179 return true; 179 return true;
180 } 180 }
181 181
182 return f(); 182 return f();
183 } 183 }
184 184
185 shouldBeTrue("labelTest()"); 185 shouldBeTrue("labelTest()");
OLDNEW
« 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