| Index: test/mjsunit/debug-function-scopes.js
|
| diff --git a/test/mjsunit/debug-function-scopes.js b/test/mjsunit/debug-function-scopes.js
|
| index b51e8b4432b3fb53f585d8f43b7a658eff176994..8e8dc7e7a16b0b10efafd4985287ba910a048c4c 100644
|
| --- a/test/mjsunit/debug-function-scopes.js
|
| +++ b/test/mjsunit/debug-function-scopes.js
|
| @@ -44,11 +44,12 @@ function CheckScope(scope_mirror, scope_expectations, expected_scope_type) {
|
|
|
| // A copy of the scope types from mirror-debugger.js.
|
| var ScopeType = { Global: 0,
|
| - Local: 1,
|
| - With: 2,
|
| - Closure: 3,
|
| - Catch: 4,
|
| - Block: 5 };
|
| + GlobalLexical: 1,
|
| + Local: 2,
|
| + With: 3,
|
| + Closure: 4,
|
| + Catch: 5,
|
| + Block: 6 };
|
|
|
| var f1 = (function F1(x) {
|
| function F2(y) {
|
|
|