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

Unified Diff: test/mjsunit/regress/regress-abort-preparsing-params.js

Issue 2475433002: Turn Scope::locals_ into a ThreadedList (Closed)
Patch Set: Addressed comments Created 4 years, 1 month 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 | « src/utils.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/regress/regress-abort-preparsing-params.js
diff --git a/test/mjsunit/regress/regress-abort-preparsing-params.js b/test/mjsunit/regress/regress-abort-preparsing-params.js
index d2bdc5084d53419579eba2c25aa7d488efde1a48..d53532179559afa7c972b8f89bccce7c0b14fc41 100644
--- a/test/mjsunit/regress/regress-abort-preparsing-params.js
+++ b/test/mjsunit/regress/regress-abort-preparsing-params.js
@@ -4,7 +4,7 @@
var outer_a;
-function f(a) {
+function f(a, b, a) {
outer_a = a;
x = 1;
x = 1;
@@ -942,5 +942,5 @@ function f(a) {
x = 1;
x = 1;
}
-f(1);
+f(1, 2, 1);
assertEquals(1, outer_a);
« no previous file with comments | « src/utils.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698