| Index: src/d8.js
|
| ===================================================================
|
| --- src/d8.js (revision 2839)
|
| +++ src/d8.js (working copy)
|
| @@ -102,7 +102,8 @@
|
| Debug.ScopeType = { Global: 0,
|
| Local: 1,
|
| With: 2,
|
| - Closure: 3 };
|
| + Closure: 3,
|
| + Catch: 4 };
|
|
|
|
|
| // Current debug state.
|
| @@ -900,6 +901,10 @@
|
| result += 'With, ';
|
| result += '#' + scope.object.ref + '#';
|
| break;
|
| + case Debug.ScopeType.Catch:
|
| + result += 'Catch, ';
|
| + result += '#' + scope.object.ref + '#';
|
| + break;
|
| case Debug.ScopeType.Closure:
|
| result += 'Closure';
|
| break;
|
|
|