(scope1, scope2)
| 79 | |
| 80 | // Check that two scope are the same. |
| 81 | function assertScopeMirrorEquals(scope1, scope2) { |
| 82 | assertEquals(scope1.scopeType(), scope2.scopeType()); |
| 83 | assertEquals(scope1.frameIndex(), scope2.frameIndex()); |
| 84 | assertEquals(scope1.scopeIndex(), scope2.scopeIndex()); |
| 85 | assertPropertiesEqual(scope1.scopeObject().value(), scope2.scopeObject().value()); |
| 86 | } |
| 87 | |
| 88 | function CheckFastAllScopes(scopes, exec_state) |
| 89 | { |
no test coverage detected