| Index: test/mjsunit/eval.js
|
| diff --git a/test/mjsunit/eval.js b/test/mjsunit/eval.js
|
| index 100f21653fb2943a63c88473e45de6f263d445ad..5ea94240ebcb51ee5dd49d3ae81c2a22b949c643 100644
|
| --- a/test/mjsunit/eval.js
|
| +++ b/test/mjsunit/eval.js
|
| @@ -28,10 +28,10 @@
|
| assertEquals(void 0, eval());
|
| assertEquals(4, eval(4));
|
|
|
| -function f() { return 'The f function'; };
|
| +function f() { return 'The f function'; }
|
| assertTrue(f === eval(f));
|
|
|
| -function g(x, y) { return 4; };
|
| +function g(x, y) { return 4; }
|
|
|
| count = 0;
|
| assertEquals(4, eval('2 + 2', count++));
|
| @@ -47,7 +47,7 @@ try {
|
|
|
| // eval has special evaluation order for consistency with other browsers.
|
| global_eval = eval;
|
| -assertEquals(void 0, eval(eval("var eval = function f(x) { return 'hest';}")))
|
| +assertEquals(void 0, eval(eval("var eval = function f(x) { return 'hest';}")));
|
| eval = global_eval;
|
|
|
| // Test eval with different number of parameters.
|
|
|