| Index: test/mjsunit/debug-scopes.js
|
| diff --git a/test/mjsunit/debug-scopes.js b/test/mjsunit/debug-scopes.js
|
| index 3659d4e129a836c5b8a31ae5dace8948af5c93e8..37a1ce5eaf27ca4d3109ea56736566428b6b7bb5 100644
|
| --- a/test/mjsunit/debug-scopes.js
|
| +++ b/test/mjsunit/debug-scopes.js
|
| @@ -1179,11 +1179,10 @@ var code3 = "function for_statement() { \n" +
|
|
|
| listener_delegate = function(exec_state) {
|
| CheckScopeChain([debug.ScopeType.Block,
|
| - debug.ScopeType.Block,
|
| debug.ScopeType.Local,
|
| debug.ScopeType.Script,
|
| debug.ScopeType.Global], exec_state);
|
| - CheckScopeChainPositions([{start: 52, end: 111}, {start: 42, end: 111}, {start: 22, end: 145}, {}, {}], exec_state);
|
| + CheckScopeChainPositions([{start: 52, end: 111}, {start: 22, end: 145}, {}, {}], exec_state);
|
| }
|
| eval(code3);
|
| EndTest();
|
|
|