(names, exec_state)
| 119 | |
| 120 | // Check that the scope chain contains the expected names of scopes. |
| 121 | function CheckScopeChainNames(names, exec_state) { |
| 122 | var all_scopes = exec_state.frame().allScopes(); |
| 123 | assertEquals(names.length, all_scopes.length, "FrameMirror.allScopes length"); |
| 124 | for (var i = 0; i < names.length; i++) { |
| 125 | var scope = exec_state.frame().scope(i); |
| 126 | // assertEquals(names[i], scope.details().name()) |
| 127 | } |
| 128 | } |
| 129 | |
| 130 | |
| 131 | // Check that the scope contains at least minimum_content. For functions just |
no test coverage detected
searching dependent graphs…