| Index: test/mjsunit/compiler/simple-global-access.js
|
| diff --git a/test/mjsunit/compiler/simple-global-access.js b/test/mjsunit/compiler/simple-global-access.js
|
| index 87a641cc9c9b8fea745f343fa88d6a4107ce98e0..7c128721e4ebf89752da58377bbc4b62d674b27e 100644
|
| --- a/test/mjsunit/compiler/simple-global-access.js
|
| +++ b/test/mjsunit/compiler/simple-global-access.js
|
| @@ -35,7 +35,7 @@ function f1() { this.x = this.y = this.z = g1; }
|
| function f2() { this.x = g1; this.y = g2; this.z = g3; }
|
| function f3() { this.x = g4; }
|
|
|
| -var o = { x:0, y:0, z:0, test1:f1, test2:f2, test3:f3 }
|
| +var o = { x:0, y:0, z:0, test1:f1, test2:f2, test3:f3 };
|
|
|
| o.test1();
|
| assertEquals(42, o.x);
|
|
|