| Index: test/mjsunit/value-callic-prototype-change.js
|
| diff --git a/test/mjsunit/value-callic-prototype-change.js b/test/mjsunit/value-callic-prototype-change.js
|
| index 52f06297b024bc4547ed050a575cc3221d0d4fde..e6c170935ef9cce5c29a18cdcb2196699fea9586 100644
|
| --- a/test/mjsunit/value-callic-prototype-change.js
|
| +++ b/test/mjsunit/value-callic-prototype-change.js
|
| @@ -32,7 +32,7 @@ function testString() {
|
| function f(s, expected) {
|
| var result = s.toString();
|
| assertEquals(expected, result);
|
| - };
|
| + }
|
|
|
| for (var i = 0; i < 10; i++) {
|
| var s = String.fromCharCode(i);
|
| @@ -56,7 +56,7 @@ function testNumber() {
|
| function f(n, expected) {
|
| var result = n.toString();
|
| assertEquals(expected, result);
|
| - };
|
| + }
|
|
|
| for (var i = 0; i < 10; i++) {
|
| f(i, 0);
|
| @@ -78,7 +78,7 @@ function testBoolean() {
|
| function f(b, expected) {
|
| var result = b.toString();
|
| assertEquals(expected, result);
|
| - };
|
| + }
|
|
|
| for (var i = 0; i < 10; i++) {
|
| f((i % 2 == 0), 0);
|
|
|