| Index: test/mjsunit/debug-scopes.js
|
| diff --git a/test/mjsunit/debug-scopes.js b/test/mjsunit/debug-scopes.js
|
| index 942bd2bb073804571bf39b01db88b07d25f44479..0fdb41029a0b6ea3f9dfd14e2cbc0da88190ac07 100644
|
| --- a/test/mjsunit/debug-scopes.js
|
| +++ b/test/mjsunit/debug-scopes.js
|
| @@ -466,7 +466,7 @@ function closure_1(a) {
|
| function f() {
|
| debugger;
|
| return a;
|
| - };
|
| + }
|
| return f;
|
| }
|
|
|
| @@ -491,7 +491,7 @@ function closure_2(a, b) {
|
| function f() {
|
| debugger;
|
| return a + x;
|
| - };
|
| + }
|
| return f;
|
| }
|
|
|
| @@ -517,7 +517,7 @@ function closure_3(a, b) {
|
| function f() {
|
| debugger;
|
| return a + b + x + y;
|
| - };
|
| + }
|
| return f;
|
| }
|
|
|
| @@ -546,7 +546,7 @@ function closure_4(a, b) {
|
| if (f) {
|
| return a + b + x + y;
|
| }
|
| - };
|
| + }
|
| return f;
|
| }
|
|
|
| @@ -574,7 +574,7 @@ function closure_5(a, b) {
|
| eval('');
|
| debugger;
|
| return 1;
|
| - };
|
| + }
|
| return f;
|
| }
|
|
|
| @@ -806,7 +806,7 @@ listener_delegate = function(exec_state) {
|
| debug.ScopeType.Closure,
|
| debug.ScopeType.Closure,
|
| debug.ScopeType.Global], exec_state);
|
| -}
|
| +};
|
| closure_in_with_3();
|
| EndTest();
|
|
|
| @@ -844,7 +844,7 @@ function catch_block_1() {
|
| } catch (e) {
|
| debugger;
|
| }
|
| -};
|
| +}
|
|
|
|
|
| listener_delegate = function(exec_state) {
|
| @@ -866,7 +866,7 @@ function catch_block_2() {
|
| debugger;
|
| }
|
| }
|
| -};
|
| +}
|
|
|
|
|
| listener_delegate = function(exec_state) {
|
| @@ -891,7 +891,7 @@ function catch_block_3() {
|
| } catch (e) {
|
| debugger;
|
| }
|
| -};
|
| +}
|
|
|
|
|
| listener_delegate = function(exec_state) {
|
| @@ -917,7 +917,7 @@ function catch_block_4() {
|
| debugger;
|
| }
|
| }
|
| -};
|
| +}
|
|
|
| listener_delegate = function(exec_state) {
|
| CheckScopeChain([debug.ScopeType.With,
|
| @@ -978,7 +978,7 @@ function catch_block_7() {
|
| } catch (e) {
|
| debugger;
|
| }
|
| -};
|
| +}
|
|
|
|
|
| listener_delegate = function(exec_state) {
|
|
|