| Index: test/mjsunit/compiler/regress-closures-with-eval.js
|
| diff --git a/test/mjsunit/compiler/regress-closures-with-eval.js b/test/mjsunit/compiler/regress-closures-with-eval.js
|
| index 57afb1643efcdcf9ea3aef981769259a49e7d5fb..2993d0f98b71ade7e4e6a111ab79e568578804ec 100644
|
| --- a/test/mjsunit/compiler/regress-closures-with-eval.js
|
| +++ b/test/mjsunit/compiler/regress-closures-with-eval.js
|
| @@ -47,7 +47,7 @@ function makeTagInfoJSON(n) {
|
| return a;
|
| }
|
|
|
| -var expr = '([' + makeTagInfoJSON(128).join(', ') + '])'
|
| +var expr = '([' + makeTagInfoJSON(128).join(', ') + '])';
|
|
|
| for (var n = 0; n < 5; n++) {
|
| withEval(expr, function(a) { return a; });
|
|
|