| Index: test/mjsunit/property-load-across-eval.js
|
| diff --git a/test/mjsunit/property-load-across-eval.js b/test/mjsunit/property-load-across-eval.js
|
| index 98b621e7922588acf0e5a73af91dc487a0ac2c6c..ae1bddfb5256d3888a7069cc2d593fe009af3481 100644
|
| --- a/test/mjsunit/property-load-across-eval.js
|
| +++ b/test/mjsunit/property-load-across-eval.js
|
| @@ -30,14 +30,14 @@
|
| var x = 1;
|
| function global_function() { return 'global'; }
|
| const const_uninitialized;
|
| -const const_initialized = function() { return "const_global"; }
|
| +const const_initialized = function() { return "const_global"; };
|
|
|
| // Test loading across an eval call that does not shadow variables.
|
| function testNoShadowing() {
|
| var y = 2;
|
| function local_function() { return 'local'; }
|
| const local_const_uninitialized;
|
| - const local_const_initialized = function() { return "const_local"; }
|
| + const local_const_initialized = function() { return "const_local"; };
|
| function f() {
|
| eval('1');
|
| assertEquals(1, x);
|
|
|