| Index: src/mirror-debugger.js
|
| diff --git a/src/mirror-debugger.js b/src/mirror-debugger.js
|
| index 897413cfda535284fefe7b5fc2361108c20fb958..f6f17ec7fadffdd4d45bcc794436e147c58e5c73 100644
|
| --- a/src/mirror-debugger.js
|
| +++ b/src/mirror-debugger.js
|
| @@ -186,12 +186,13 @@ PropertyAttribute.DontDelete = DONT_DELETE;
|
|
|
|
|
| // A copy of the scope types from runtime.cc.
|
| -var ScopeType = { Global: 0,
|
| - Local: 1,
|
| - With: 2,
|
| - Closure: 3,
|
| - Catch: 4,
|
| - Block: 5 };
|
| +var ScopeType = { Global: 0, // named NativeScope internally
|
| + GlobalLexical: 1, // named GlobalScope internally
|
| + Local: 2,
|
| + With: 3,
|
| + Closure: 4,
|
| + Catch: 5,
|
| + Block: 6 };
|
|
|
|
|
| // Mirror hierarchy:
|
|
|