(frame)
| 420 | } |
| 421 | |
| 422 | getLocalScopeDetails(frame) { |
| 423 | const scopes = frame.scopeChain; |
| 424 | for (let i = 0; i < scopes.length; i++) { |
| 425 | const scope = scopes[i] |
| 426 | if (scope.type == "local") { |
| 427 | return this.getProperties(scope.object.objectId); |
| 428 | } |
| 429 | } |
| 430 | |
| 431 | return undefined; |
| 432 | } |
| 433 | |
| 434 | execStateFrameLocalCount(frame) { |
| 435 | const scope_details = this.getLocalScopeDetails(frame); |
no test coverage detected