| Index: test/mjsunit/instanceof-2.js
|
| diff --git a/test/mjsunit/instanceof-2.js b/test/mjsunit/instanceof-2.js
|
| index fd6874d6a5a1d0952089c449b7958afaaaa906bc..c0b4626c4c5e6edd45366bdbe1f1dceb275dfe18 100644
|
| --- a/test/mjsunit/instanceof-2.js
|
| +++ b/test/mjsunit/instanceof-2.js
|
| @@ -304,8 +304,8 @@ function InstanceTest(x, func) {
|
|
|
|
|
| function Test(a, b, c, d, e, f, g, h) {
|
| - var Foo = function() { }
|
| - var Bar = function() { }
|
| + var Foo = function() { };
|
| + var Bar = function() { };
|
|
|
| if (c) Foo.prototype = 12;
|
| if (d) Bar.prototype = 13;
|
| @@ -320,7 +320,7 @@ function Test(a, b, c, d, e, f, g, h) {
|
| if (g) {
|
| x.__proto__ = y;
|
| } else {
|
| - if (h) y.__proto__ = x
|
| + if (h) y.__proto__ = x;
|
| }
|
| InstanceTest(x, Foo);
|
| InstanceTest(y, Foo);
|
|
|