Chromium Code Reviews| Index: test/mjsunit/extra-arguments.js |
| diff --git a/test/mjsunit/extra-arguments.js b/test/mjsunit/extra-arguments.js |
| index 186277a006f61b8a92d26606379ca40274ade6ba..dc579bbe19525979c6fd761aebd6a8169d675c18 100644 |
| --- a/test/mjsunit/extra-arguments.js |
| +++ b/test/mjsunit/extra-arguments.js |
| @@ -27,7 +27,7 @@ |
| function f() { |
| return g(); |
| -}; |
| +} |
| function g() { |
| var result = 0; |
| @@ -36,7 +36,7 @@ function g() { |
| result += array[i]; |
| } |
| return result; |
| -}; |
| +} |
| // Make sure we can pass any number of arguments to f and read them |