| Index: test/mjsunit/harmony/debug-function-scopes.js
|
| diff --git a/test/mjsunit/harmony/debug-function-scopes.js b/test/mjsunit/harmony/debug-function-scopes.js
|
| index 0113be672b0931e89c2f076f1966aa07d7c0b7e5..737cfd8651a5f6cdc2c5f7a777a680f1f5a1ba78 100644
|
| --- a/test/mjsunit/harmony/debug-function-scopes.js
|
| +++ b/test/mjsunit/harmony/debug-function-scopes.js
|
| @@ -46,11 +46,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) {
|
|
|