| Index: test/mjsunit/receiver-in-with-calls.js
|
| diff --git a/test/mjsunit/receiver-in-with-calls.js b/test/mjsunit/receiver-in-with-calls.js
|
| index 5f2bdac20f4e35add4e8156ac6449ffc29fc5ad7..732fbf4529bd4332dca717222e141681d046faad 100644
|
| --- a/test/mjsunit/receiver-in-with-calls.js
|
| +++ b/test/mjsunit/receiver-in-with-calls.js
|
| @@ -36,12 +36,12 @@
|
|
|
|
|
| assertTrue({ f: function() {
|
| - function g() { return this; };
|
| + function g() { return this; }
|
| return eval("g")();
|
| } }.f() == this);
|
|
|
|
|
| assertTrue({ f: function() {
|
| - function g() { return this; };
|
| + function g() { return this; }
|
| return eval("g()");
|
| } }.f() == this);
|
|
|