| Index: test/mjsunit/bugs/harmony/debug-blockscopes.js
|
| diff --git a/test/mjsunit/bugs/harmony/debug-blockscopes.js b/test/mjsunit/bugs/harmony/debug-blockscopes.js
|
| index fda32eb3d30acfc98a8839714450afa2834cf92c..9ef8efbc0ce513abea2cc292078a1c5fcc1a08dd 100644
|
| --- a/test/mjsunit/bugs/harmony/debug-blockscopes.js
|
| +++ b/test/mjsunit/bugs/harmony/debug-blockscopes.js
|
| @@ -144,18 +144,10 @@ function CheckScopeContent(content, number, exec_state) {
|
| if (!scope.scopeObject().property('arguments').isUndefined()) {
|
| scope_size--;
|
| }
|
| - // Also ignore synthetic variable from catch block.
|
| - if (!scope.scopeObject().property('.catch-var').isUndefined()) {
|
| - scope_size--;
|
| - }
|
| // Skip property with empty name.
|
| if (!scope.scopeObject().property('').isUndefined()) {
|
| scope_size--;
|
| }
|
| - // Also ignore synthetic variable from block scopes.
|
| - if (!scope.scopeObject().property('.block').isUndefined()) {
|
| - scope_size--;
|
| - }
|
|
|
| if (count != scope_size) {
|
| print('Names found in scope:');
|
|
|